blob: 8a26818d8e6e914f2aac76ac3b1fb229508332a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
update-desktop-database -q
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
}
post_update() {
post_install
}
post_remove() {
post_install
}
|