diff options
Diffstat (limited to 'community/fwbuilder/fwbuilder.install')
-rw-r--r-- | community/fwbuilder/fwbuilder.install | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/community/fwbuilder/fwbuilder.install b/community/fwbuilder/fwbuilder.install new file mode 100644 index 000000000..b2d479931 --- /dev/null +++ b/community/fwbuilder/fwbuilder.install @@ -0,0 +1,14 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null + update-desktop-database -q /usr/share/applications &> /dev/null + update-mime-database usr/share/mime &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + |