Update Submodules & HDD Rsync Scrip
- Update doom emacs, doom eamcs config, dwm, and dracula-gtk submodules - Update `rsync_laptop_to_external_hdd.sh` to use new path to HDD and re-order the folders that get synced
This commit is contained in:
parent
7431e686de
commit
7e270ed2de
@ -1 +1 @@
|
||||
Subproject commit b06fd63dcb686045d0c105f93e07f80cb8de6800
|
||||
Subproject commit 12bf6baa213686afb80b62c19773fdddad14e88e
|
@ -1 +1 @@
|
||||
Subproject commit be2af81c73231aef9145d7f0a5d752b4f1c18c75
|
||||
Subproject commit 7b38c5ab888990459ebc506cfb54560a8fa879f1
|
@ -1 +1 @@
|
||||
Subproject commit 05175768cc533c6dee33921cf215386a78e6b3d8
|
||||
Subproject commit e55861f8a2125448cd18a191ecd6f7ab86822cc2
|
@ -1,11 +1,17 @@
|
||||
#!/bin/bash
|
||||
# Define base paths
|
||||
external_hdd_path="/run/media/sravan/Seagate 5TB"
|
||||
external_hdd_path="/run/media/sravan/5TB_HDD"
|
||||
backup_path="$external_hdd_path/Backups"
|
||||
home_path="/home/sravan"
|
||||
|
||||
# Define arrays
|
||||
declare -a source_dirs=(
|
||||
"$home_path/.config/lutris/"
|
||||
"$home_path/.config/dolphin-emu/"
|
||||
"$home_path/.config/retroarch/"
|
||||
"$home_path/.config/rpcs3/"
|
||||
"$home_path/.config/PCSX2/"
|
||||
"$home_path/.cache/lutris/"
|
||||
"$home_path/Calibre_Library/"
|
||||
"$home_path/ISOs/"
|
||||
"$home_path/Manga/"
|
||||
@ -13,14 +19,14 @@ declare -a source_dirs=(
|
||||
"$home_path/Pictures/"
|
||||
"$home_path/Videos/"
|
||||
"$home_path/Games/"
|
||||
"$home_path/.config/lutris/"
|
||||
"$home_path/.config/dolphin-emu/"
|
||||
"$home_path/.config/retroarch/"
|
||||
"$home_path/.config/rpcs3/"
|
||||
"$home_path/.config/PCSX2/"
|
||||
"$home_path/.cache/lutris/"
|
||||
)
|
||||
declare -a target_dirs=(
|
||||
"$backup_path/.config/lutris/"
|
||||
"$backup_path/.config/dolphin-emu/"
|
||||
"$backup_path/.config/retroarch/"
|
||||
"$backup_path/.config/rpcs3/"
|
||||
"$backup_path/.config/PCSX2/"
|
||||
"$backup_path/.cache/lutris/"
|
||||
"$backup_path/Calibre_Library/"
|
||||
"$backup_path/ISOs/"
|
||||
"$backup_path/Manga/"
|
||||
@ -28,12 +34,6 @@ declare -a target_dirs=(
|
||||
"$backup_path/Pictures/"
|
||||
"$backup_path/Videos/"
|
||||
"$backup_path/Games/"
|
||||
"$backup_path/.config/lutris/"
|
||||
"$backup_path/.config/dolphin-emu/"
|
||||
"$backup_path/.config/retroarch/"
|
||||
"$backup_path/.config/rpcs3/"
|
||||
"$backup_path/.config/PCSX2/"
|
||||
"$backup_path/.cache/lutris/"
|
||||
)
|
||||
|
||||
# Loop through arrays
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 43da99c96fc8f712689865837fb1593c9e6ca5af
|
||||
Subproject commit 3b41a66aa24298563fb2baf24beaa550e8f668cc
|
26
README.org
26
README.org
@ -8452,12 +8452,18 @@ done
|
||||
|
||||
#+BEGIN_SRC shell :shebang #!/bin/bash :tangle .scripts/rsync_laptop_to_external_hdd.sh
|
||||
# Define base paths
|
||||
external_hdd_path="/run/media/sravan/Seagate 5TB"
|
||||
external_hdd_path="/run/media/sravan/5TB_HDD"
|
||||
backup_path="$external_hdd_path/Backups"
|
||||
home_path="/home/sravan"
|
||||
|
||||
# Define arrays
|
||||
declare -a source_dirs=(
|
||||
"$home_path/.config/lutris/"
|
||||
"$home_path/.config/dolphin-emu/"
|
||||
"$home_path/.config/retroarch/"
|
||||
"$home_path/.config/rpcs3/"
|
||||
"$home_path/.config/PCSX2/"
|
||||
"$home_path/.cache/lutris/"
|
||||
"$home_path/Calibre_Library/"
|
||||
"$home_path/ISOs/"
|
||||
"$home_path/Manga/"
|
||||
@ -8465,14 +8471,14 @@ declare -a source_dirs=(
|
||||
"$home_path/Pictures/"
|
||||
"$home_path/Videos/"
|
||||
"$home_path/Games/"
|
||||
"$home_path/.config/lutris/"
|
||||
"$home_path/.config/dolphin-emu/"
|
||||
"$home_path/.config/retroarch/"
|
||||
"$home_path/.config/rpcs3/"
|
||||
"$home_path/.config/PCSX2/"
|
||||
"$home_path/.cache/lutris/"
|
||||
)
|
||||
declare -a target_dirs=(
|
||||
"$backup_path/.config/lutris/"
|
||||
"$backup_path/.config/dolphin-emu/"
|
||||
"$backup_path/.config/retroarch/"
|
||||
"$backup_path/.config/rpcs3/"
|
||||
"$backup_path/.config/PCSX2/"
|
||||
"$backup_path/.cache/lutris/"
|
||||
"$backup_path/Calibre_Library/"
|
||||
"$backup_path/ISOs/"
|
||||
"$backup_path/Manga/"
|
||||
@ -8480,12 +8486,6 @@ declare -a target_dirs=(
|
||||
"$backup_path/Pictures/"
|
||||
"$backup_path/Videos/"
|
||||
"$backup_path/Games/"
|
||||
"$backup_path/.config/lutris/"
|
||||
"$backup_path/.config/dolphin-emu/"
|
||||
"$backup_path/.config/retroarch/"
|
||||
"$backup_path/.config/rpcs3/"
|
||||
"$backup_path/.config/PCSX2/"
|
||||
"$backup_path/.cache/lutris/"
|
||||
)
|
||||
|
||||
# Loop through arrays
|
||||
|
Loading…
x
Reference in New Issue
Block a user