25 lines
525 B
Text
25 lines
525 B
Text
#src_dirs = '~'.split() # absolute path to directory to be backed up
|
|
src_dirs = '''
|
|
~
|
|
/mnt/storage/psi-jack
|
|
'''.split()
|
|
|
|
excludes = '''
|
|
~/tmp
|
|
~/.cache
|
|
~/.mozilla
|
|
~/.config/google-chrome
|
|
~/.config/BraveSoftware
|
|
~/.firestorm_x64
|
|
~/.firestorm_x64.new
|
|
~/.local/share/fonts
|
|
~/.local/share/Steam
|
|
~/**/__pycache__
|
|
~/**/*.pyc
|
|
~/**/.*.swp
|
|
~/**/.*.swo
|
|
/mnt/storage/psi-jack/AfterSolus
|
|
/mnt/storage/psi-jack/BeforeMint
|
|
/mnt/storage/psi-jack/BeforeSolus
|
|
'''.split()
|
|
|