2011-09-06 05:57:09 +02:00
|
|
|
if [ -x /usr/bin/update-desktop-database ]; then
|
|
|
|
/usr/bin/update-desktop-database -q usr/share/applications
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -x /usr/bin/update-mime-database ]; then
|
|
|
|
/usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
|
|
|
|
fi
|
|
|
|
|
2018-11-24 03:03:20 +01:00
|
|
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
2011-09-06 05:57:09 +02:00
|
|
|
for theme in gnome locolor hicolor ; do
|
2018-11-24 03:03:20 +01:00
|
|
|
if [ -e usr/share/icons/$theme/icon-theme.cache ]; then
|
2017-01-09 13:50:02 +01:00
|
|
|
/usr/bin/gtk-update-icon-cache -f usr/share/icons/$theme >/dev/null 2>&1
|
2011-09-06 05:57:09 +02:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|