From ffe0d68f986f6bc271b01d152ed3a699bbe8be80 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Sat, 18 Jun 2022 10:42:10 -0400 Subject: [PATCH] Rsync HDD Backup Update & Redshift Location Fix - Fix redshift location (needed negative longitude for West) - Remove `Documents` from hdd rsync backup - Remove `PCSX2` from hdd rsync backup - Add lutris cache to hdd rsync backup - Update restart patches in dwm-flexipatch submodule - Update doom-emacs submodule --- .config/doom-emacs | 2 +- .config/dwm-flexipatch | 2 +- .config/redshift/redshift.conf | 2 +- .scripts/rsync_laptop_to_external_hdd.sh | 14 ++++++-------- README.org | 16 +++++++--------- 5 files changed, 16 insertions(+), 20 deletions(-) diff --git a/.config/doom-emacs b/.config/doom-emacs index bea3cc1..4071d27 160000 --- a/.config/doom-emacs +++ b/.config/doom-emacs @@ -1 +1 @@ -Subproject commit bea3cc161c0a803dcf574f32ee555dccf565a5ce +Subproject commit 4071d27263f31c240d33732a782979140dd0866b diff --git a/.config/dwm-flexipatch b/.config/dwm-flexipatch index cadf3a8..3eddc34 160000 --- a/.config/dwm-flexipatch +++ b/.config/dwm-flexipatch @@ -1 +1 @@ -Subproject commit cadf3a896ad71b32277a2d4775176afb6844ea6b +Subproject commit 3eddc34482d1e372822b72267800ec77b9934d68 diff --git a/.config/redshift/redshift.conf b/.config/redshift/redshift.conf index 07fd3bb..4500d10 100644 --- a/.config/redshift/redshift.conf +++ b/.config/redshift/redshift.conf @@ -48,7 +48,7 @@ adjustment-method=randr ; Merrifield, VA lat=38.8743 -lon=77.2269 +lon=-77.2269 ; Configuration of the adjustment-method ; type 'redshift -m METHOD:help' to see the settings. diff --git a/.scripts/rsync_laptop_to_external_hdd.sh b/.scripts/rsync_laptop_to_external_hdd.sh index 58f4637..5339e1e 100755 --- a/.scripts/rsync_laptop_to_external_hdd.sh +++ b/.scripts/rsync_laptop_to_external_hdd.sh @@ -7,7 +7,6 @@ home_path="/home/sravan" # Define arrays declare -a source_dirs=( "$home_path/Calibre_Library/" - "$home_path/Documents/" "$home_path/ISOs/" "$home_path/Music/" "$home_path/Pictures/" @@ -15,23 +14,22 @@ declare -a source_dirs=( "$home_path/Games/" "$home_path/.config/lutris/" "$home_path/.config/dolphin-emu/" - "$home_path/.config/PCSX2/" "$home_path/.config/retroarch/" "$home_path/.config/rpcs3/" + "$home_path/.cache/lutris/" ) declare -a target_dirs=( "$backup_path/Calibre_Library/" - "$backup_path/Documents/" "$backup_path/ISOs/" "$backup_path/Music/" "$backup_path/Pictures/" "$backup_path/Videos/" "$backup_path/Games/" - "$backup_path/Config/Lutris/" - "$backup_path/Config/Dolphin-Emu/" - "$backup_path/Config/PCSX2/" - "$backup_path/Config/RetroArch/" - "$backup_path/Config/RPCS3/" + "$backup_path/.config/lutris/" + "$backup_path/.config/dolphin-emu/" + "$backup_path/.config/retroarch/" + "$backup_path/.config/rpcs3/" + "$backup_path/.cache/lutris/" ) # Loop through arrays diff --git a/README.org b/README.org index 042003d..e6695a8 100644 --- a/README.org +++ b/README.org @@ -3001,7 +3001,7 @@ adjustment-method=randr ; Merrifield, VA lat=38.8743 -lon=77.2269 +lon=-77.2269 ; Configuration of the adjustment-method ; type 'redshift -m METHOD:help' to see the settings. @@ -8181,7 +8181,6 @@ home_path="/home/sravan" # Define arrays declare -a source_dirs=( "$home_path/Calibre_Library/" - "$home_path/Documents/" "$home_path/ISOs/" "$home_path/Music/" "$home_path/Pictures/" @@ -8189,23 +8188,22 @@ declare -a source_dirs=( "$home_path/Games/" "$home_path/.config/lutris/" "$home_path/.config/dolphin-emu/" - "$home_path/.config/PCSX2/" "$home_path/.config/retroarch/" "$home_path/.config/rpcs3/" + "$home_path/.cache/lutris/" ) declare -a target_dirs=( "$backup_path/Calibre_Library/" - "$backup_path/Documents/" "$backup_path/ISOs/" "$backup_path/Music/" "$backup_path/Pictures/" "$backup_path/Videos/" "$backup_path/Games/" - "$backup_path/Config/Lutris/" - "$backup_path/Config/Dolphin-Emu/" - "$backup_path/Config/PCSX2/" - "$backup_path/Config/RetroArch/" - "$backup_path/Config/RPCS3/" + "$backup_path/.config/lutris/" + "$backup_path/.config/dolphin-emu/" + "$backup_path/.config/retroarch/" + "$backup_path/.config/rpcs3/" + "$backup_path/.cache/lutris/" ) # Loop through arrays