RSYNC Laptop to HDD Re-Order & Yuzu

- Update dwm and doom emacs submodules
- Re-order rsync laptop to hdd script directories alphabetically
- Add Yuzu config and cache folders to laptop to hdd rsync script
This commit is contained in:
Sravan Balaji
2022-08-12 21:41:21 -04:00
parent 7e270ed2de
commit 8fbc5c6ca0
4 changed files with 26 additions and 18 deletions

View File

@@ -6,34 +6,38 @@ home_path="/home/sravan"
# Define arrays # Define arrays
declare -a source_dirs=( declare -a source_dirs=(
"$home_path/.config/lutris/" "$home_path/.cache/lutris/"
"$home_path/.cache/yuzu/"
"$home_path/.config/PCSX2/"
"$home_path/.config/dolphin-emu/" "$home_path/.config/dolphin-emu/"
"$home_path/.config/lutris/"
"$home_path/.config/retroarch/" "$home_path/.config/retroarch/"
"$home_path/.config/rpcs3/" "$home_path/.config/rpcs3/"
"$home_path/.config/PCSX2/" "$home_path/.config/yuzu/"
"$home_path/.cache/lutris/"
"$home_path/Calibre_Library/" "$home_path/Calibre_Library/"
"$home_path/Games/"
"$home_path/ISOs/" "$home_path/ISOs/"
"$home_path/Manga/" "$home_path/Manga/"
"$home_path/Music/" "$home_path/Music/"
"$home_path/Pictures/" "$home_path/Pictures/"
"$home_path/Videos/" "$home_path/Videos/"
"$home_path/Games/"
) )
declare -a target_dirs=( declare -a target_dirs=(
"$backup_path/.config/lutris/" "$backup_path/.cache/lutris/"
"$backup_path/.cache/yuzu/"
"$backup_path/.config/PCSX2/"
"$backup_path/.config/dolphin-emu/" "$backup_path/.config/dolphin-emu/"
"$backup_path/.config/lutris/"
"$backup_path/.config/retroarch/" "$backup_path/.config/retroarch/"
"$backup_path/.config/rpcs3/" "$backup_path/.config/rpcs3/"
"$backup_path/.config/PCSX2/" "$backup_path/.config/yuzu/"
"$backup_path/.cache/lutris/"
"$backup_path/Calibre_Library/" "$backup_path/Calibre_Library/"
"$backup_path/Games/"
"$backup_path/ISOs/" "$backup_path/ISOs/"
"$backup_path/Manga/" "$backup_path/Manga/"
"$backup_path/Music/" "$backup_path/Music/"
"$backup_path/Pictures/" "$backup_path/Pictures/"
"$backup_path/Videos/" "$backup_path/Videos/"
"$backup_path/Games/"
) )
# Loop through arrays # Loop through arrays

View File

@@ -8458,34 +8458,38 @@ home_path="/home/sravan"
# Define arrays # Define arrays
declare -a source_dirs=( declare -a source_dirs=(
"$home_path/.config/lutris/" "$home_path/.cache/lutris/"
"$home_path/.cache/yuzu/"
"$home_path/.config/PCSX2/"
"$home_path/.config/dolphin-emu/" "$home_path/.config/dolphin-emu/"
"$home_path/.config/lutris/"
"$home_path/.config/retroarch/" "$home_path/.config/retroarch/"
"$home_path/.config/rpcs3/" "$home_path/.config/rpcs3/"
"$home_path/.config/PCSX2/" "$home_path/.config/yuzu/"
"$home_path/.cache/lutris/"
"$home_path/Calibre_Library/" "$home_path/Calibre_Library/"
"$home_path/Games/"
"$home_path/ISOs/" "$home_path/ISOs/"
"$home_path/Manga/" "$home_path/Manga/"
"$home_path/Music/" "$home_path/Music/"
"$home_path/Pictures/" "$home_path/Pictures/"
"$home_path/Videos/" "$home_path/Videos/"
"$home_path/Games/"
) )
declare -a target_dirs=( declare -a target_dirs=(
"$backup_path/.config/lutris/" "$backup_path/.cache/lutris/"
"$backup_path/.cache/yuzu/"
"$backup_path/.config/PCSX2/"
"$backup_path/.config/dolphin-emu/" "$backup_path/.config/dolphin-emu/"
"$backup_path/.config/lutris/"
"$backup_path/.config/retroarch/" "$backup_path/.config/retroarch/"
"$backup_path/.config/rpcs3/" "$backup_path/.config/rpcs3/"
"$backup_path/.config/PCSX2/" "$backup_path/.config/yuzu/"
"$backup_path/.cache/lutris/"
"$backup_path/Calibre_Library/" "$backup_path/Calibre_Library/"
"$backup_path/Games/"
"$backup_path/ISOs/" "$backup_path/ISOs/"
"$backup_path/Manga/" "$backup_path/Manga/"
"$backup_path/Music/" "$backup_path/Music/"
"$backup_path/Pictures/" "$backup_path/Pictures/"
"$backup_path/Videos/" "$backup_path/Videos/"
"$backup_path/Games/"
) )
# Loop through arrays # Loop through arrays