- moved system scripts to here

- config changes
- fixed my backup scripts. rsync -a
- added dmenu script
- fixed finds in env.sh
This commit is contained in:
2025-06-30 00:05:45 -05:00
parent 22b2eb9a95
commit b95ae4c5c9
8 changed files with 51 additions and 22 deletions

View File

@@ -2,12 +2,12 @@ cd ~/stuff/scripts
fsync () {
# t?
rsync -RUurvn --size-only --delete-after $exclude $syncfile "$target"
rsync -RUuavn --delete-after $exclude $syncfile "$target"
printf "===commit these changes?\n"
read - "y/n: " uinput
if [ "$uinput" != "n" ] && [ "$uinput" != "N" ]; then
printf "\n\n\n"
rsync -RUurv --progress --size-only --delete-after $exclude $syncfile "$target"
rsync -RUuav --progress --delete-after $exclude $syncfile "$target"
printf "\n===end sync\n---------\n\n"
fi
}