blob: ef6b2f57db9d5325d7ee17c4a0682c24d39635a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
echo ":: To start hister, enable the user service:"
echo " systemctl --user enable --now hister"
echo ""
echo ":: Generate a default config file:"
echo " hister create-config ~/.config/hister/config.yml"
}
post_upgrade() {
echo ":: Restart the hister service if running:"
echo " systemctl --user restart hister"
}
|