From 36c054be451734ae067b30ba0449156957f1c7af Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 31 Dec 2023 00:43:26 +0900 Subject: [PATCH] updated thunar.sh --- install-scripts/thunar.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-scripts/thunar.sh b/install-scripts/thunar.sh index 9ad69c2..04f9524 100755 --- a/install-scripts/thunar.sh +++ b/install-scripts/thunar.sh @@ -35,9 +35,9 @@ printf "${NOTE} Installing Thunar Packages...\n" for DIR1 in Thunar xfce4; do DIRPATH=~/.config/$DIR1 if [ -d "$DIRPATH" ]; then - echo -e "${NOTE} Config for $DIR1 found, no need to copy." + echo -e "${NOTE} Config for $DIR1 found, no need to copy." 2>&1 | tee -a "$LOG" else - echo -e "${NOTE} Config for $DIR1 not found, copying from assets." + echo -e "${NOTE} Config for $DIR1 not found, copying from assets." 2>&1 | tee -a "$LOG" cp -r assets/$DIR1 ~/.config/ && echo "Copy $DIR1 completed!" || echo "Error: Failed to copy $DIR1 config files." 2>&1 | tee -a "$LOG" fi done