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