From ebb3493afbe7b1a08ddc9b252b707f4b7dc77053 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 22 May 2024 21:13:18 +0900 Subject: [PATCH] changed the sddm theme destination to /etc/sddm.conf.d/10-theme.conf to theme.conf.user --- CHANGELOGS.md | 3 +++ install-scripts/sddm.sh | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOGS.md b/CHANGELOGS.md index b09f232..44aea6d 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -1,5 +1,8 @@ ## Changelogs +## 22 May 2024 +- change the sddm theme destination to /etc/sddm.conf.d/10-theme.conf to theme.conf.user + ## 19 May 2024 - Disabled the auto-login in .zprofile as it causes auto-login to Hyprland if any wayland was chosen. Can enabled if only using hyprland diff --git a/install-scripts/sddm.sh b/install-scripts/sddm.sh index c442d83..820d052 100755 --- a/install-scripts/sddm.sh +++ b/install-scripts/sddm.sh @@ -99,7 +99,7 @@ while [ "$valid_input" != true ]; do fi sudo mv simple-sddm /usr/share/sddm/themes/ - echo -e "[Theme]\nCurrent=simple-sddm" | sudo tee "$sddm_conf_dir/10-theme.conf" &>> "$LOG" + echo -e "[Theme]\nCurrent=simple-sddm" | sudo tee "$sddm_conf_dir/theme.conf.user" &>> "$LOG" else echo -e "\e[1A\e[K${ERROR} - Failed to clone the theme repository. Please check your internet connection or repository availability." | tee -a "$LOG" >&2 fi