diff options
Diffstat (limited to 'office/leafpad/doinst.sh')
-rw-r--r-- | office/leafpad/doinst.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/office/leafpad/doinst.sh b/office/leafpad/doinst.sh index f39d8d4dfa..1f8ff67ded 100644 --- a/office/leafpad/doinst.sh +++ b/office/leafpad/doinst.sh @@ -1,3 +1,10 @@ if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications + /usr/bin/update-desktop-database -q usr/share/applications >/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 + |