- set icons for mon2 in i3
- exluded a blender render dir
- two flash backup thingys
- lfrc filebrowser dectetion and formatting
- changed music dir for mpd
- moved browser backup to its own script. log too big
- added DIAGRAM_PLANTUML_CLASSPATH var for plantuml
- added web reqs script
- added asciidoc preview
- fixed ft_to_lang error by disabling treesitter in telescope
- copy media script
22 lines
454 B
Plaintext
Executable File
22 lines
454 B
Plaintext
Executable File
cd ~
|
|
|
|
fsync () {
|
|
# t?
|
|
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 -RUuav --progress --delete-after $exclude $syncfile "$target"
|
|
printf "\n===end sync\n---------\n\n"
|
|
fi
|
|
}
|
|
|
|
syncfile="stuff/notes"
|
|
|
|
#sync game stuff
|
|
target="/home/iceyrazor/u"
|
|
exclude=""
|
|
|
|
fsync
|