Parcourir la source

dracut/display-manager-autologin: autostart mate via lxdm if mate-session exists.

Juan RP il y a 10 ans
Parent
commit
ee37a611e9
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 2 0
      dracut/display-manager-autologin.sh

+ 2 - 0
dracut/display-manager-autologin.sh

@@ -36,5 +36,7 @@ if [ -r ${NEWROOT}/etc/lxdm/lxdm.conf ]; then
         sed -e "s,.*session.*=.*,session=/usr/bin/enlightenment_start," -i ${NEWROOT}/etc/lxdm/lxdm.conf
     elif [ -x ${NEWROOT}/usr/bin/startxfce4 ]; then
         sed -e "s,.*session.*=.*,session=/usr/bin/startxfce4," -i ${NEWROOT}/etc/lxdm/lxdm.conf
+    elif [ -x ${NEWROOT}/usr/bin/mate-session ]; then
+        sed -e "s,.*session.*=.*,session=/usr/bin/mate-session," -i ${NEWROOT}/etc/lxdm/lxdm.conf
     fi
 fi