blob: e5325ce56d64dd47d8eadd3d6c86794969c60f98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
post_install() {
echo ""
echo "==> fish-screen-time installed!"
echo ""
echo "==> To finish setup, run these two commands:"
echo ""
echo " systemctl --user enable --now screen-time-tracker"
echo ""
echo "==> Then add this to your fish_greeting function:"
echo ""
echo " function fish_greeting"
echo " show_screen_time"
echo " end"
echo ""
echo "==> Save it with: funcsave fish_greeting"
echo ""
}
post_upgrade() {
post_install
}
|