diff options
| author | iceyrazor <iceyrazor@mailfence.com> | 2025-09-10 21:11:18 -0500 |
|---|---|---|
| committer | iceyrazor <iceyrazor@mailfence.com> | 2025-09-10 21:11:18 -0500 |
| commit | b2aa06f910c2b34ddb3d47df2ed03112f7949fb9 (patch) | |
| tree | 42814f14db3c7926414c832cfe78e1d9bc763305 /env/.local/bin/scripts/backup/pull-froml | |
| parent | 581545aa36e4e3aadb8a545b200f9b779ecf9371 (diff) | |
- changed i3 bar to put taskbar on the right monitor... for now
- added pull down sync script. just workes for one thing for now
- added next/prev workspace to i3
- boost libs for vr
Diffstat (limited to 'env/.local/bin/scripts/backup/pull-froml')
| -rwxr-xr-x | env/.local/bin/scripts/backup/pull-froml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/env/.local/bin/scripts/backup/pull-froml b/env/.local/bin/scripts/backup/pull-froml new file mode 100755 index 0000000..421fc30 --- /dev/null +++ b/env/.local/bin/scripts/backup/pull-froml @@ -0,0 +1,30 @@ +cd ~/ + +fsynca () { + # t? + rsync -RUuavn $exclude $syncfile "$target" +} + +fsyncb () { + printf "===confirm changes?\n" + read -p "y/n: " uinput + if [ "$uinput" != "n" ] && [ "$uinput" != "N" ]; then + printf "\n\n\n" + rsync -RUuav --progress $exclude $syncfile "$target" + printf "\n===end sync\n---------\n\n" + fi +} + +# !! no in use. backup script does not perserve timestamps or something so it wants to overwrite most files +# will fix bidirectional sync at some point +# syncfile="laptop:.surf/styles laptop:.urlview laptop:.gnupg laptop:.local/bin/lf-gadgets laptop:.local/share/applications/custom laptop:.config/FreeTube laptop:.config/newsboat laptop:.config/zsh laptop:.config/vesktop/themes laptop:.keepass laptop:.config/Pinta laptop:.config/cmus laptop:.config/gajim/theme laptop:stuff" +syncfile="laptop:stuff/scripts/node/Nwjs/nms-data/" + +#sync game stuff +target="/home/iceyrazor/" +exclude="--exclude suff/.private --exclude stream.sh --exclude node_modules --exclude **/target" + + +fsynca + +fsyncb |
