edit/adjusted some scripts

This commit is contained in:
JaKooLit
2023-12-05 13:29:43 +09:00
parent 52b3a1e49d
commit 7f7a9e7d3d
4 changed files with 12 additions and 9 deletions

View File

@@ -73,7 +73,9 @@ printf "${NOTE} Installing Thunar Packages...\n"
echo -e "${NOTE} Backed up $DIR1 to $DIRPATH-back-up."
fi
done
cp -r assets/xfce4 ~/.config/ && { echo "Copy xfce4 completed!"; } || { echo "Error: Failed to copy xfce4 config files."; exit 1; } 2>&1 | tee -a "$LOG"
cp -r assets/Thunar ~/.config/ && { echo "Copy Thunar completed!"; } || { echo "Error: Failed to copy Thunar config files."; exit 1; } 2>&1 | tee -a "$LOG"
clear
# copying from assets
cp -r assets/xfce4 ~/.config/ && echo "Copy xfce4 completed!" || echo "Error: Failed to copy xfce4 config files." 2>&1 | tee -a "$LOG"
cp -r assets/Thunar ~/.config/ && echo "Copy Thunar completed!" || echo "Error: Failed to copy Thunar config files." 2>&1 | tee -a "$LOG"
clear