blob: 6e40082fd1463814b8d56f13e96a006291ff26f6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
if [[ $(pidof systemd) ]]; then
echo "Systemd service installed, to enable type:"
echo 'sudo systemctl enable betterlockscreen@$USER'
fi
}
post_upgrade() {
post_install
}
|