#!/bin/sh #if [ -x /usr/bin/update-mime-database ]; then # update-mime-database /usr/share/mime #fi if [ -x /usr/bin/update-desktop-database ]; then update-desktop-database /usr/share/applications fi #if [ -x /usr/bin/hildon-update-category-database ]; then # hildon-update-category-database /usr/share/mime #fi if [ -r /etc/osso-af-init/af-defines.sh -a -x /usr/bin/dbus-send -a -x /usr/bin/gtk-update-icon-cache ]; then source /etc/osso-af-init/af-defines.sh dbus-send --type=method_call --dest=org.freedesktop.Notifications /org/freedesktop/Notifications org.freedesktop.Notifications.SystemNoteInfoprint string:"Updating icon cache" || true fi if [ -x /usr/bin/gtk-update-icon-cache ]; then gtk-update-icon-cache -f /usr/share/icons/hicolor fi #DEBHELPER# exit 0