blob: 729c57f4795a3d3eaf8ddef0893feadeb198dd5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
echo ""
echo -e "\033[1;33m LAUREL: Run \033[1mlaurel\033[1;33m in your terminal to get started.\033[0m"
echo ""
}
post_upgrade() {
echo ""
echo -e "\033[1;33m LAUREL: Run \033[1mlaurel\033[1;33m to check status or \033[1mlaurel setup\033[1;33m to reconfigure.\033[0m"
echo ""
}
pre_remove() {
echo ""
echo "==> Run before uninstalling: systemctl --user disable --now laurel-replay"
echo ""
}
|