slackware-current/source/l/hicolor-icon-theme/setup.08.gtk-update-icon-cache

17 lines
638 B
Text
Raw Normal View History

#BLURB="Run gtk-update-icon-cache for hicolor theme."
# This is needed since XFce adds a few hicolor icons that would
# not otherwise be cached. Really, I'm not sure the idea of
# caching icons is a good one -- the use of gtk-update-icon-cache
# could disappear from future install scripts.
# Update hicolor theme cache:
if [ -d usr/share/icons/hicolor ]; then
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then # ONLY run this is there's already a cache!!!
if [ -x /usr/bin/gtk-update-icon-cache ]; then
chroot . /usr/bin/gtk-update-icon-cache -f -t usr/share/icons/hicolor 1> /dev/null 2> /dev/null
fi
fi
fi