diff options
Diffstat (limited to 'community/medit/medit.install')
-rw-r--r-- | community/medit/medit.install | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/community/medit/medit.install b/community/medit/medit.install new file mode 100644 index 000000000..b4ee8556f --- /dev/null +++ b/community/medit/medit.install @@ -0,0 +1,12 @@ +post_install() { + which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true +} + |