17 lines
239 B
Plaintext
17 lines
239 B
Plaintext
update_resources() {
|
|
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
|
|
update-desktop-database -q
|
|
}
|
|
|
|
post_install() {
|
|
update_resources
|
|
}
|
|
|
|
post_upgrade() {
|
|
update_resources
|
|
}
|
|
|
|
post_remove() {
|
|
update_resources
|
|
}
|