Expand firstlogin config to support sddm autologin hack for 1st run
This commit is contained in:
parent
cb0e483efa
commit
d6391e491a
@ -439,7 +439,6 @@ if [[ -f /root/.not_logged_in_yet && -n $(tty) ]]; then
|
||||
# rpardini: hacks per-dm, very much legacy stuff that works by a miracle
|
||||
if [[ "${desktop_dm}" == "lightdm" ]] && [ -n "$RealName" ]; then
|
||||
|
||||
# 1st run goes without login
|
||||
mkdir -p /etc/lightdm/lightdm.conf.d
|
||||
cat <<- EOF > /etc/lightdm/lightdm.conf.d/22-armbian-autologin.conf
|
||||
[Seat:*]
|
||||
@ -489,10 +488,6 @@ if [[ -f /root/.not_logged_in_yet && -n $(tty) ]]; then
|
||||
[[ -x $(command -v mate-wm) ]] && sed -i "s/user-session.*/user-session=mate/" /etc/lightdm/lightdm.conf.d/11-armbian.conf
|
||||
[[ -x $(command -v mate-wm) ]] && sed -i "s/user-session.*/user-session=mate/" /etc/lightdm/lightdm.conf.d/22-armbian-autologin.conf
|
||||
|
||||
# select plasma wayland session # @TODO: rpardini: dead code? kde-plasma desktop should use sddm, not lightdm.
|
||||
[[ -x $(command -v plasmashell) ]] && sed -i "s/user-session.*/user-session=plasmawayland/" /etc/lightdm/lightdm.conf.d/11-armbian.conf
|
||||
[[ -x $(command -v plasmashell) ]] && sed -i "s/user-session.*/user-session=plasmawayland/" /etc/lightdm/lightdm.conf.d/22-armbian-autologin.conf
|
||||
|
||||
# select sway wayland session
|
||||
[[ -x $(command -v sway) ]] && sed -i "s/user-session.*/user-session=sway/" /etc/lightdm/lightdm.conf.d/11-armbian.conf
|
||||
[[ -x $(command -v sway) ]] && sed -i "s/user-session.*/user-session=sway/" /etc/lightdm/lightdm.conf.d/22-armbian-autologin.conf
|
||||
@ -552,9 +547,32 @@ if [[ -f /root/.not_logged_in_yet && -n $(tty) ]]; then
|
||||
who -la | grep root | grep -q tty1 && exit 1
|
||||
fi
|
||||
elif [[ "${desktop_dm}" == "sddm" ]] && [ -n "$RealName" ]; then
|
||||
# No hacks for sddm. User will have to input password again, and have chance to choose session wayland
|
||||
|
||||
# create default sddm config
|
||||
mkdir -p /etc/sddm.conf.d
|
||||
cat <<- EOF > /etc/sddm.conf.d/armbian.conf
|
||||
[Theme]
|
||||
Current=plasma-chili
|
||||
EOF
|
||||
|
||||
# 1st run goes without login
|
||||
cat <<- EOF > /etc/sddm.conf.d/autologin.conf
|
||||
[Autologin]
|
||||
User=$RealUserName
|
||||
Session=plasmawayland
|
||||
EOF
|
||||
echo -e "\n\e[1m\e[39mNow starting desktop environment via ${desktop_dm}...\x1B[0m\n"
|
||||
systemctl enable --now sddm
|
||||
systemctl enable --now sddm 2> /dev/null
|
||||
|
||||
if [ -f /root/.desktop_autologin ]; then
|
||||
rm /root/.desktop_autologin
|
||||
else
|
||||
systemctl -q enable armbian-disable-autologin.timer
|
||||
systemctl start armbian-disable-autologin.timer
|
||||
fi
|
||||
# logout if logged at console
|
||||
who -la | grep root | grep -q tty1 && exit 1
|
||||
|
||||
else
|
||||
# no display manager detected
|
||||
# Display reboot recommendation if necessary
|
||||
|
||||
Loading…
Reference in New Issue
Block a user