summaryrefslogtreecommitdiffstats
path: root/system/yakuake/doinst.sh
diff options
context:
space:
mode:
author dsomero2012-09-30 19:04:04 +0200
committer Robby Workman2012-10-01 03:01:11 +0200
commit03cdd389cb94429be936d9d6357077e8a1fd4ebf (patch)
treee9b4b71f187844fdca73b71caa6722400e22c580 /system/yakuake/doinst.sh
parenta8141df9c3a72659ecf59a2d1b0ddbdf0d2e0423 (diff)
downloadslackbuilds-03cdd389cb94429be936d9d6357077e8a1fd4ebf.tar.gz
system/yakuake: Fixed (Handle icon files)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/yakuake/doinst.sh')
-rw-r--r--system/yakuake/doinst.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/system/yakuake/doinst.sh b/system/yakuake/doinst.sh
index 22d4849bce..922f8a99be 100644
--- a/system/yakuake/doinst.sh
+++ b/system/yakuake/doinst.sh
@@ -1,5 +1,11 @@
+if [ -x /usr/bin/update-desktop-database ]; then
+ /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
+fi
-if [ -x usr/bin/update-desktop-database ]; then
- usr/bin/update-desktop-database usr/share/applications >/dev/null 2>&1
+if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
+ if [ -x /usr/bin/gtk-update-icon-cache ]; then
+ /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
+ fi
fi
+