blob: 6b6646d6388f39adc78e65b679976ef802ca1674 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install(){
printf "Starwm installed successfully.\n"
printf "Now you will see starwm in the list of your gdm.\n"
printf "$(tput setaf 2)If you are not using gdm, you can add starwm to your '.xinitrc' and then run Starwm with the 'startx' command.$(tput sgr0)\n"
}
post_upgrade(){
post_install
}
post_uninstall(){
printf "Starwm uninstall successfully.\n"
printf "$(tput setaf 1)If you are not using gdm, you need to remove starwm from your xinitrc.$(tput sgr0)\n"
}
|