mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
16 lines
324 B
Bash
16 lines
324 B
Bash
sudo mkdir -p /etc/sddm.conf.d
|
|
|
|
if [ ! -f /etc/sddm.conf.d/autologin.conf ]; then
|
|
cat <<EOF | sudo tee /etc/sddm.conf.d/autologin.conf
|
|
[Autologin]
|
|
User=$USER
|
|
Session=hyprland-uwsm
|
|
|
|
[Theme]
|
|
Current=breeze
|
|
EOF
|
|
fi
|
|
|
|
# Don't use chrootable here as --now will cause issues for manual installs
|
|
sudo systemctl enable sddm.service
|