diff options
Diffstat (limited to 'libre-testing/kodi/kodi.install')
-rw-r--r-- | libre-testing/kodi/kodi.install | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libre-testing/kodi/kodi.install b/libre-testing/kodi/kodi.install new file mode 100644 index 000000000..31897532c --- /dev/null +++ b/libre-testing/kodi/kodi.install @@ -0,0 +1,17 @@ +post_install() { + update_icons +} + +post_upgrade() { + update_icons +} + +post_remove() { + update_icons +} + +update_icons() { + type -p gtk-update-icon-cache > /dev/null 2>&1 && usr/bin/gtk-update-icon-cache -qtf usr/share/icons/hicolor + type -p update-desktop-database > /dev/null 2>&1 && usr/bin/update-desktop-database -q usr/share/applications + return 0 +} |