Sun Feb 26, 2017 1:00 pm
chmod 644 /etc/X11/Xsession.d/21-lightdm-language-fix
Sun Feb 26, 2017 1:14 pm
Sun Feb 26, 2017 2:30 pm
Sun Feb 26, 2017 2:49 pm
Mon Feb 27, 2017 1:11 am
Sat Mar 04, 2017 10:56 pm
Init ()
{
# exit if this script is already configured
if [ -e /var/lib/live/config/refracta-lang ]; then
exit 0
fi
# exit if "locales=" (official live-config parameter) was specified
if (cat /proc/cmdline|grep -q " locales="); then
fix_lightdm
exit 0
fi
# exit if "lang=" was *not* specified
if ! (cat /proc/cmdline|grep -q " lang="); then
exit 0
fi
echo -n " refracta-lang "
}
Sun Mar 05, 2017 2:34 pm
Sun Mar 05, 2017 6:15 pm
Sun Mar 05, 2017 10:13 pm
* Tidy up and improve readability of code lines.
* Include Xsession.d script to fix lightdm language selector bug.