From 4baa3780d623e310791dd7e5051cc21a2faaf563 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 5 Feb 2025 01:01:05 +0900 Subject: [PATCH] updated sddm.sh --- install-scripts/sddm.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-scripts/sddm.sh b/install-scripts/sddm.sh index a88c612..5057b58 100755 --- a/install-scripts/sddm.sh +++ b/install-scripts/sddm.sh @@ -32,12 +32,12 @@ LOG="Install-Logs/install-$(date +%d-%H%M%S)_sddm.log" # Install SDDM (no-recommends) printf "\n%s - Installing ${SKY_BLUE}SDDM and dependencies${RESET} .... \n" "${NOTE}" for PKG1 in "${sddm1[@]}" ; do - sudo apt-get install --no-install-recommends -y "$PKG1" "$LOG" + sudo apt-get install --no-install-recommends -y "$PKG1" | tee -a "$LOG" done # Installation of additional sddm stuff for PKG2 in "${sddm2[@]}"; do - install_package "$PKG2" 2>&1 | tee -a "$LOG" + install_package "$PKG2" "$LOG" done # Check if other login managers are installed and disabling their service before enabling sddm