From 0e5c3be377f574a2d0d20e8a09e80a5c6c0e0258 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Tue, 11 Mar 2025 17:17:26 +0900 Subject: [PATCH] updated sddm.sh --- install-scripts/sddm.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install-scripts/sddm.sh b/install-scripts/sddm.sh index 529c9d8..7377d82 100755 --- a/install-scripts/sddm.sh +++ b/install-scripts/sddm.sh @@ -69,7 +69,8 @@ done printf "\n%.0s" {1..1} printf "${INFO} Activating sddm service........\n" -sudo systemctl enable sddm +sudo systemctl set-default graphical.target 2>&1 | tee -a "$LOG" +sudo systemctl enable sddm 2>&1 | tee -a "$LOG" wayland_sessions_dir=/usr/share/wayland-sessions [ ! -d "$wayland_sessions_dir" ] && { printf "$CAT - $wayland_sessions_dir not found, creating...\n"; sudo mkdir -p "$wayland_sessions_dir" 2>&1 | tee -a "$LOG"; }