mirror of
https://github.com/brain-hackers/brain-config.git
synced 2024-11-05 17:58:04 +09:00
Make Wayland switching more robust
This commit is contained in:
parent
2ef9a3a194
commit
0319d1c799
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
raspi-config (20220506) bullseye; urgency=medium
|
||||
|
||||
* Modify Wayland switching to work with AccountSettings
|
||||
|
||||
-- Simon Long <simon@raspberrypi.com> Fri, 06 May 2022 14:07:57 +0100
|
||||
|
||||
raspi-config (20220425) bullseye; urgency=medium
|
||||
|
||||
* Tidy hardware detection functions
|
||||
|
14
raspi-config
14
raspi-config
@ -2035,7 +2035,7 @@ do_glamor() {
|
||||
do_wayland() {
|
||||
DEFAULT=--defaultno
|
||||
CURRENT=0
|
||||
if grep -q "^user-session=LXDE-pi" /etc/lightdm/lightdm.conf ; then
|
||||
if grep -q "^user-session=LXDE-pi-wayland" /etc/lightdm/lightdm.conf ; then
|
||||
DEFAULT=
|
||||
CURRENT=1
|
||||
fi
|
||||
@ -2049,10 +2049,18 @@ do_wayland() {
|
||||
ASK_TO_REBOOT=1
|
||||
fi
|
||||
if [ $RET -eq 0 ]; then
|
||||
sed /etc/lightdm/lightdm.conf -i -e "s/^#\\?user-session.*/user-session=LXDE-pi/"
|
||||
sed /etc/lightdm/lightdm.conf -i -e "s/^#\\?user-session.*/user-session=LXDE-pi-wayland/"
|
||||
sed /etc/lightdm/lightdm.conf -i -e "s/^#\\?autologin-session.*/autologin-session=LXDE-pi-wayland/"
|
||||
if [ -e "/var/lib/AccountsService/users/$USER" ] ; then
|
||||
sed "/var/lib/AccountsService/users/$USER" -i -e "s/XSession=.*/XSession=LXDE-pi-wayland/"
|
||||
fi
|
||||
STATUS=enabled
|
||||
elif [ $RET -eq 1 ]; then
|
||||
sed /etc/lightdm/lightdm.conf -i -e "s/user-session.*/#user-session=LXDE-pi/"
|
||||
sed /etc/lightdm/lightdm.conf -i -e "s/^#\\?user-session.*/user-session=LXDE-pi-x/"
|
||||
sed /etc/lightdm/lightdm.conf -i -e "s/^#\\?autologin-session.*/autologin-session=LXDE-pi-x/"
|
||||
if [ -e "/var/lib/AccountsService/users/$USER" ] ; then
|
||||
sed "/var/lib/AccountsService/users/$USER" -i -e "s/XSession=.*/XSession=LXDE-pi-x/"
|
||||
fi
|
||||
STATUS=disabled
|
||||
else
|
||||
return $RET
|
||||
|
Loading…
Reference in New Issue
Block a user