[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#990391: live-config autologin not working for KDE Plasma (fix included)



Package: live-config
Version: 11.0.2

The sddm config script is not writing in the correct session to start plasma
automatically (Autologin). It is looking for /usr/bin/startkde which newer
Plasma versions replaced with /usr/bin/startplasma-x11

To avoid it writing an empty session which prevents sddm to autologin on live
boot we need to change it look for startplasma-x11. (see attached patch that
does this)

Cheers
Leszek
diff --git a/components/0085-sddm b/components/0085-sddm
index 7373e2d..6a25ab5 100755
--- a/components/0085-sddm
+++ b/components/0085-sddm
@@ -67,7 +67,7 @@ Config ()
 	then
 		LIVE_X_SESSION_MANAGER=$(realpath /usr/bin/x-session-manager)
 		case "${LIVE_X_SESSION_MANAGER}" in
-			/usr/bin/startkde)
+			/usr/bin/startplasma-x11)
 				LIVE_SESSION="plasma.desktop"
 				;;


Reply to: