1
0

modules/backup: support excluding paths

This commit is contained in:
2023-06-28 18:09:03 +02:00
parent 80cc6522da
commit 942d226099
2 changed files with 13 additions and 9 deletions

View File

@@ -9,16 +9,17 @@
"/var/lib"
];
exclude = [
"/home/*/.local/share/Trash/"
"/home/*/.local/share/Trash/*"
"/home/*/.config/*.log"
"/home/*/.local/*.log"
"/home/*/.cache/"
"/home/*/.config/*[Cc]ache*/"
"/home/*/.mozilla/*/cache/"
"/home/*/.thumbnails/"
"/home/*/.cache/*"
"/home/*/.config/*[Cc]ache*/*"
"/home/*/.mozilla/*/cache/*"
"/home/*/.thumbnails/*"
"/home/*/.config/Element/Cache/*"
"/home/clerie/tmp/"
"/home/clere/Downloads/"
"/home/clerie/tmp/*"
"/home/clere/Downloads/*"
];
};
};