blob: fe899b5e9759652e45845f0decbec447adbac7ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
post_install() {
echo ""
echo " ╔══════════════════════════════════════════════╗"
echo " ║ focus.os installed ║"
echo " ╚══════════════════════════════════════════════╝"
echo ""
echo " Run now:"
echo " focus-os"
echo ""
echo " Enable autostart (starts with your desktop session):"
echo " systemctl --user enable --now focus-os"
echo ""
echo " Disable autostart:"
echo " systemctl --user disable --now focus-os"
echo ""
echo " The default toggle shortcut is Ctrl+Shift+Space."
echo " Change it via Ctrl+S inside the bar."
echo ""
}
post_upgrade() {
post_install
}
|