Skip to content

Commit c11599d

Browse files
committed
Use lxdm as fallback for sddm
1 parent f6634b7 commit c11599d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

biglinux-livecd/usr/bin/startbiglive

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Identify the display manager
4-
for dm in sddm gdm lightdm; do
4+
for dm in sddm gdm lightdm lxdm; do
55
if systemctl status $dm &> /dev/null; then
66
display_manager=$dm
77
break
@@ -105,7 +105,7 @@ if [[ $display_manager == "gdm" ]]; then
105105
# Start Gnome
106106
/usr/bin/gnome-session
107107

108-
elif [[ $display_manager == "sddm" ]]; then
108+
elif [[ $display_manager == "sddm" || $display_manager == "lxdm" ]]; then
109109
if [[ "$XDG_SESSION_TYPE" == "x11" ]]; then
110110
startkde-biglinux
111111
else

0 commit comments

Comments
 (0)