diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-30 13:04:04 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-30 20:01:11 -0500 |
commit | 03cdd389cb94429be936d9d6357077e8a1fd4ebf (patch) | |
tree | e9b4b71f187844fdca73b71caa6722400e22c580 /system/yakuake/doinst.sh | |
parent | a8141df9c3a72659ecf59a2d1b0ddbdf0d2e0423 (diff) | |
download | slackbuilds-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.sh | 10 |
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 + |