15 lines
312 B
Bash
15 lines
312 B
Bash
#!/usr/bin/env zsh
|
|
|
|
# author: Daniel Sommer <daniel.sommer@velvettear.de>
|
|
# license: MIT
|
|
|
|
# define title and icon for the notification
|
|
export RESTIC_NTFY_TITLE="$(hostname)"
|
|
export RESTIC_NTFY_ICON="green_circle"
|
|
|
|
# define directories to backup
|
|
export RESTIC_DIRECTORIES=(
|
|
"/etc"
|
|
"/root"
|
|
"/home/velvettear"
|
|
)
|