summaryrefslogtreecommitdiffstats
path: root/desktop/obconf/doinst.sh
diff options
context:
space:
mode:
author Chess Griffin2010-05-12 17:38:01 +0200
committer David Somero2010-05-12 17:38:01 +0200
commit924621b2d36ed0d87405d66353457f93f1ee0b58 (patch)
tree06fa2bf13122d5be256f137996746dde8c78b222 /desktop/obconf/doinst.sh
parent2fd43e7d2661a422d7a225db108e18a2eebffc7d (diff)
downloadslackbuilds-924621b2d36ed0d87405d66353457f93f1ee0b58.tar.gz
desktop/obconf: Updated for version 2.0.3
Diffstat (limited to 'desktop/obconf/doinst.sh')
-rw-r--r--desktop/obconf/doinst.sh14
1 files changed, 9 insertions, 5 deletions
diff --git a/desktop/obconf/doinst.sh b/desktop/obconf/doinst.sh
index 4557defa56..21e9945eb9 100644
--- a/desktop/obconf/doinst.sh
+++ b/desktop/obconf/doinst.sh
@@ -1,9 +1,13 @@
-
-if [ -x usr/bin/update-desktop-database ]; then
- usr/bin/update-desktop-database -q usr/share/applications
+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-mime-database ]; then
- usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
+if [ -x /usr/bin/update-mime-database ]; then
+ /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
fi
+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 \ No newline at end of file