blob: c42847b7d0dddc4f15e7a3a58f6eaa0b8c6675b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
echo ":: Synca has been installed."
echo ":: To start the synchronization daemon automatically on login, run:"
echo " systemctl --user enable --now synca.service"
echo ""
echo ":: You can then launch the GUI from your application menu."
}
post_upgrade() {
echo ":: Remember to restart the Synca service if you encountered issues:"
echo " systemctl --user restart synca.service"
}
|