From 85ebc8366325412feabd8feb599e37185bf58e2f Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 18 Sep 2024 13:55:32 +0900 Subject: drop nvim config. Wont be offered anymore since it just a handle users use it plus just a big headache Still there but it wont be copied anymore --- copy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'copy.sh') diff --git a/copy.sh b/copy.sh index 45b614f9..943c6263 100755 --- a/copy.sh +++ b/copy.sh @@ -386,7 +386,7 @@ printf "\n" printf "${NOTE} - copying dotfiles second part\n" # Config directories which will ask the user whether to replace or not -DIRS="ags fastfetch kitty nvim rofi swaync waybar" +DIRS="ags fastfetch kitty rofi swaync waybar" for DIR2 in $DIRS; do DIRPATH=~/.config/"$DIR2" -- cgit v1.2.3 From f8d953062323cf2fdd328865ea372adb9f218a15 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 18 Sep 2024 14:39:00 +0900 Subject: tweaked copy.sh for better readability --- copy.sh | 41 ++++++++++++++++++++++++++++++----------- 1 file changed, 30 insertions(+), 11 deletions(-) (limited to 'copy.sh') diff --git a/copy.sh b/copy.sh index 943c6263..e09d91e8 100755 --- a/copy.sh +++ b/copy.sh @@ -348,35 +348,47 @@ if [ ! -d "config" ]; then exit 1 fi -for DIR in btop cava hypr Kvantum qt5ct qt6ct swappy wallust wlogout; do - DIRPATH=~/.config/"$DIR" +DIR=" + btop + cava + hypr + Kvantum + qt5ct + qt6ct + swappy + wallust + wlogout +" + +for DIR_NAME in $DIR; do + DIRPATH=~/.config/"$DIR_NAME" # Backup the existing directory if it exists if [ -d "$DIRPATH" ]; then - echo -e "${NOTE} - Config for $DIR found, attempting to back up." + echo -e "${NOTE} - Config for $DIR_NAME found, attempting to back up." BACKUP_DIR=$(get_backup_dirname) # Backup the existing directory mv "$DIRPATH" "$DIRPATH-backup-$BACKUP_DIR" 2>&1 | tee -a "$LOG" if [ $? -eq 0 ]; then - echo -e "${NOTE} - Backed up $DIR to $DIRPATH-backup-$BACKUP_DIR." + echo -e "${NOTE} - Backed up $DIR_NAME to $DIRPATH-backup-$BACKUP_DIR." else - echo "${ERROR} - Failed to back up $DIR." + echo "${ERROR} - Failed to back up $DIR_NAME." exit 1 fi fi # Copy the new config - if [ -d "config/$DIR" ]; then - cp -r "config/$DIR" ~/.config/"$DIR" 2>&1 | tee -a "$LOG" + if [ -d "config/$DIR_NAME" ]; then + cp -r "config/$DIR_NAME" ~/.config/"$DIR_NAME" 2>&1 | tee -a "$LOG" if [ $? -eq 0 ]; then - echo "${OK} - Copy of config for $DIR completed!" + echo "${OK} - Copy of config for $DIR_NAME completed!" else - echo "${ERROR} - Failed to copy $DIR." + echo "${ERROR} - Failed to copy $DIR_NAME." exit 1 fi else - echo "${ERROR} - Directory config/$DIR does not exist to copy." + echo "${ERROR} - Directory config/$DIR_NAME does not exist to copy." exit 1 fi done @@ -386,7 +398,14 @@ printf "\n" printf "${NOTE} - copying dotfiles second part\n" # Config directories which will ask the user whether to replace or not -DIRS="ags fastfetch kitty rofi swaync waybar" +DIRS=" + ags + fastfetch + kitty + rofi + swaync + waybar +" for DIR2 in $DIRS; do DIRPATH=~/.config/"$DIR2" -- cgit v1.2.3 From d7dc56e6fcb0ddbf3750336a042eceff802aad93 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 18 Sep 2024 23:17:07 +0900 Subject: updated copy.sh --- copy.sh | 126 ++++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 63 insertions(+), 63 deletions(-) (limited to 'copy.sh') diff --git a/copy.sh b/copy.sh index e09d91e8..c2b860ee 100755 --- a/copy.sh +++ b/copy.sh @@ -333,69 +333,7 @@ printf "\n" # Copy Config Files # set -e # Exit immediately if a command exits with a non-zero status. -printf "${NOTE} - Copying dotfiles first part\n" - -# Function to create a unique backup directory name with month, day, hours, and minutes -get_backup_dirname() { - local timestamp - timestamp=$(date +"%m%d_%H%M") - echo "back-up_${timestamp}" -} - -# Check if the config directory exists -if [ ! -d "config" ]; then - echo "${ERROR} - The 'config' directory does not exist." - exit 1 -fi - -DIR=" - btop - cava - hypr - Kvantum - qt5ct - qt6ct - swappy - wallust - wlogout -" - -for DIR_NAME in $DIR; do - DIRPATH=~/.config/"$DIR_NAME" - - # Backup the existing directory if it exists - if [ -d "$DIRPATH" ]; then - echo -e "${NOTE} - Config for $DIR_NAME found, attempting to back up." - BACKUP_DIR=$(get_backup_dirname) - - # Backup the existing directory - mv "$DIRPATH" "$DIRPATH-backup-$BACKUP_DIR" 2>&1 | tee -a "$LOG" - if [ $? -eq 0 ]; then - echo -e "${NOTE} - Backed up $DIR_NAME to $DIRPATH-backup-$BACKUP_DIR." - else - echo "${ERROR} - Failed to back up $DIR_NAME." - exit 1 - fi - fi - - # Copy the new config - if [ -d "config/$DIR_NAME" ]; then - cp -r "config/$DIR_NAME" ~/.config/"$DIR_NAME" 2>&1 | tee -a "$LOG" - if [ $? -eq 0 ]; then - echo "${OK} - Copy of config for $DIR_NAME completed!" - else - echo "${ERROR} - Failed to copy $DIR_NAME." - exit 1 - fi - else - echo "${ERROR} - Directory config/$DIR_NAME does not exist to copy." - exit 1 - fi -done - -printf "\n" - -printf "${NOTE} - copying dotfiles second part\n" +printf "${NOTE} - copying dotfiles first part\n" # Config directories which will ask the user whether to replace or not DIRS=" @@ -458,6 +396,68 @@ done printf "\n%.0s" {1..1} +printf "${NOTE} - Copying dotfiles second part\n" + +# Function to create a unique backup directory name with month, day, hours, and minutes +get_backup_dirname() { + local timestamp + timestamp=$(date +"%m%d_%H%M") + echo "back-up_${timestamp}" +} + +# Check if the config directory exists +if [ ! -d "config" ]; then + echo "${ERROR} - The 'config' directory does not exist." + exit 1 +fi + +DIR=" + btop + cava + hypr + Kvantum + qt5ct + qt6ct + swappy + wallust + wlogout +" + +for DIR_NAME in $DIR; do + DIRPATH=~/.config/"$DIR_NAME" + + # Backup the existing directory if it exists + if [ -d "$DIRPATH" ]; then + echo -e "${NOTE} - Config for $DIR_NAME found, attempting to back up." + BACKUP_DIR=$(get_backup_dirname) + + # Backup the existing directory + mv "$DIRPATH" "$DIRPATH-backup-$BACKUP_DIR" 2>&1 | tee -a "$LOG" + if [ $? -eq 0 ]; then + echo -e "${NOTE} - Backed up $DIR_NAME to $DIRPATH-backup-$BACKUP_DIR." + else + echo "${ERROR} - Failed to back up $DIR_NAME." + exit 1 + fi + fi + + # Copy the new config + if [ -d "config/$DIR_NAME" ]; then + cp -r "config/$DIR_NAME" ~/.config/"$DIR_NAME" 2>&1 | tee -a "$LOG" + if [ $? -eq 0 ]; then + echo "${OK} - Copy of config for $DIR_NAME completed!" + else + echo "${ERROR} - Failed to copy $DIR_NAME." + exit 1 + fi + else + echo "${ERROR} - Directory config/$DIR_NAME does not exist to copy." + exit 1 + fi +done + +printf "\n" + # copying Wallpapers mkdir -p ~/Pictures/wallpapers cp -r wallpapers ~/Pictures/ && { echo "${OK} some wallpapers compied!"; } || { echo "${ERROR} Failed to copy some wallpapers."; exit 1; } 2>&1 | tee -a "$LOG" -- cgit v1.2.3 From 57448259139628bf8c168f7d4dad77b6874978cb Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 18 Sep 2024 23:59:42 +0900 Subject: updated --- copy.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'copy.sh') diff --git a/copy.sh b/copy.sh index c2b860ee..5c53cf62 100755 --- a/copy.sh +++ b/copy.sh @@ -333,8 +333,15 @@ printf "\n" # Copy Config Files # set -e # Exit immediately if a command exits with a non-zero status. -printf "${NOTE} - copying dotfiles first part\n" +# Function to create a unique backup directory name with month, day, hours, and minutes +get_backup_dirname() { + local timestamp + timestamp=$(date +"%m%d_%H%M") + echo "back-up_${timestamp}" +} + +printf "${NOTE} - copying dotfiles first part\n" # Config directories which will ask the user whether to replace or not DIRS=" ags @@ -398,13 +405,6 @@ printf "\n%.0s" {1..1} printf "${NOTE} - Copying dotfiles second part\n" -# Function to create a unique backup directory name with month, day, hours, and minutes -get_backup_dirname() { - local timestamp - timestamp=$(date +"%m%d_%H%M") - echo "back-up_${timestamp}" -} - # Check if the config directory exists if [ ! -d "config" ]; then echo "${ERROR} - The 'config' directory does not exist." -- cgit v1.2.3