blob: ff5590bcef2431a0b8bec81b1d59aa3670989c35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
echo "monsoon user service installed."
echo " to start now and on login:"
echo " systemctl --user enable --now monsoon"
echo " to survive logouts without an active session:"
echo " loginctl enable-linger \$USER"
}
post_upgrade() {
echo "monsoon upgraded — restarting user service if running:"
echo " systemctl --user restart monsoon"
}
|