blob: c967250fefd9cfc2dab50a55774fa2141a70a70a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
xdg-icon-resource forceupdate --theme hicolor &>/dev/null
echo After installation, you should put game data under '$HOME/.sdlpal'.
}
post_upgrade() {
xdg-icon-resource forceupdate --theme hicolor &>/dev/null
}
post_remove() {
xdg-icon-resource forceupdate --theme hicolor &>/dev/null
}
|