blob: c2ee1c34e53f6f5087b5483a5f83d893b3a77653 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
echo "To enable until next restart:"
echo "\$ sudo systemctl start ananicy"
echo "To enable and presist after restart:"
echo "\$ sudo systemctl start ananicy"
echo "\$ sudo systemctl disable ananicy"
echo "Configs are located in /etc/ananicy.d/"
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
}
|