blob: 37771565d82aaa6e8c1808da332183db847ba01d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo
echo "==> You must do the following steps:"
echo "1) Replace <User> for your username in /usr/lib/systemd/system/ironmime.service"
echo '2) Configure ironmime in $HOME/.config/ironmime/ironmime.conf'
echo "Check the documentation for configuration: https://github.com/cyber-sushi/ironmime?tab=readme-ov-file#configuration"
echo "3) Enable ironmime with: systemctl enable ironmime"
echo
}
post_upgrade() {
post_install
}
|