blob: 574662e27e9bf8cfa62b295001a86bea47ef2a93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
post_install() {
cat <<'EOF'
Vellum installed its binaries and the systemd user unit.
Recommended startup path:
systemctl --user enable --now vellum-daemon.service
If you do not use a systemd user session, copy the autostart example from:
/usr/share/doc/vellum/examples/vellum.desktop
to one of these locations:
~/.config/autostart/
/etc/xdg/autostart/
Do not enable both startup paths at the same time. The autostart bootstrap path takes over daemon lifecycle when it runs without a TTY.
Run `vellum` from a terminal for the interactive TUI.
EOF
}
post_upgrade() {
post_install
}
|