32 lines
745 B
Text
32 lines
745 B
Text
#src_dirs = '~'.split() # absolute path to directory to be backed up
|
|
passphrase = 'aiwei0pu4Iev0Ies4aeheim9ahmeQuec'
|
|
encryption = 'repokey'
|
|
repository = '/Volumes/Passport/macOS/borg'
|
|
|
|
src_dirs = '''
|
|
~
|
|
'''.split()
|
|
|
|
excludes = '''
|
|
~/tmp
|
|
~/Music
|
|
~/Library/Application Support/Steam
|
|
~/Library/Application Support/Google
|
|
~/Library/Application Support/LogMeInInc
|
|
~/Library/Application Support/Code
|
|
~/Library/Application Support/Firefox
|
|
~/Library/Containers
|
|
~/Library/Group Containers
|
|
~/Library/Logs
|
|
~/Library/Python
|
|
~/Library/Caches
|
|
~/.cache
|
|
~/.mozilla
|
|
~/.config/google-chrome
|
|
~/.config/BraveSoftware
|
|
~/**/__pycache__
|
|
~/**/*.pyc
|
|
~/**/.*.swp
|
|
~/**/.*.swo
|
|
'''.split()
|
|
|