blob: 2e8fcab32b68f8b3d38216bcd568deb7badcee3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
hints() {
echo "-------------------------------------------------------------------------------------------------------"
echo "Run 'systemctl --user start bing-wallpaper.service' to start the service"
echo "Run 'systemctl --user enable bing-wallpaper.service' for autostart bing-wallpaper."
echo "You may need set the enviroment variables to make it works."
echo "See https://wiki.archlinux.org/index.php/Systemd/User#Environment_variables"
echo "-------------------------------------------------------------------------------------------------------"
}
post_install() {
hints
}
post_upgrade() {
hints
}
|