A simple script to make backups of your linux home.
Configure UUID of destination partition into rsync-linux-home.py:
rsync-linux-home.py
DRIVE_UUID="<set here your UUID Partition>"
Configure which folders to include and which to exclude, changing arrays INCLUDES/EXCLUDES into rsync-linux-home.py:
INCLUDES
EXCLUDES
INCLUDES = [...] EXCLUDES = [...]
Make the script executable
chmod +x rsync-linux-home.py
Launch the script to perform the backup
./rsync-linux-home.py
GPLv3