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:
Submodule .config/doom-emacs updated: 12bf6baa21...02bb28dc82
Submodule .config/dwm-flexipatch updated: e55861f8a2...ed439ddee4
@@ -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
|
||||||
|
20
README.org
20
README.org
@@ -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
|
||||||
|
Reference in New Issue
Block a user