summarylogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
Diffstat (limited to 'install')
-rw-r--r--install14
1 files changed, 14 insertions, 0 deletions
diff --git a/install b/install
new file mode 100644
index 000000000000..e0d83b6a8b66
--- /dev/null
+++ b/install
@@ -0,0 +1,14 @@
+post_install() {
+ type update-desktop-database &>/dev/null && update-desktop-database -q
+ type gtk-update-icon-cache &>/dev/null && gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+ true
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
+