summaryrefslogtreecommitdiffstatshomepage
path: root/mbsync/install.sh
blob: 63eabbb61e37bcee35662e4eebc9b2037ca0a524 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

if command -v mbsync >/dev/null; then
	systemctl --user enable --now mbsync.service
	systemctl --user enable --now maildir-notify@gmail.service
	systemctl --user enable --now maildir-notify@porkbun.service
else
	printf "%s: command not found: mbsync\n" "$0"
	exit 1
fi

if command -v goimapnotify >/dev/null; then
	systemctl --user enable --now goimapnotify@gmail.service
	systemctl --user enable --now goimapnotify@porkbun.service
else
	printf "%s: command not found: goimapnotify\n" "$0"
	exit 1
fi