2016-08-05 16:53:26 +02:00
|
|
|
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
|
|
|
|
fi
|
|
|
|
|
2017-01-05 00:19:47 +01:00
|
|
|
if [ -e usr/share/icons/Paper/icon-theme.cache ]; then
|
2016-08-05 16:53:26 +02:00
|
|
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
2017-01-05 00:19:47 +01:00
|
|
|
/usr/bin/gtk-update-icon-cache usr/share/icons/Paper>/dev/null 2>&1
|
2016-08-05 16:53:26 +02:00
|
|
|
fi
|
|
|
|
fi
|
2017-01-05 00:19:47 +01:00
|
|
|
|
|
|
|
if [ -e usr/share/icons/Paper-Mono-Dark/icon-theme.cache ]; then
|
|
|
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
|
|
|
/usr/bin/gtk-update-icon-cache usr/share/icons/Paper-Mono-Dark >/dev/null 2>&1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|