mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
9664bee729
Wed Sep 26 01:10:42 UTC 2012 Slackware 14.0 x86_64 stable is released! We're perfectionists here at Slackware, so this release has been a long time a-brewing. But we think you'll agree that it was worth the wait. Slackware 14.0 combines modern components, ease of use, and flexible configuration... our "KISS" philosophy demands it. The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. Please consider supporting the Slackware project by picking up a copy from store.slackware.com. We're taking pre-orders now, and offer a discount if you sign up for a subscription. Thanks to everyone who helped make this happen. The Slackware team, the upstream developers, and (of course) the awesome Slackware user community. Have fun! :-)
27 lines
1.1 KiB
Bash
27 lines
1.1 KiB
Bash
# Since the use of icon caching is optional, and has to be kept in sync
|
|
# somehow (like a "registry" through a cron job, or whatever, I tend to
|
|
# think the user should be the one to choose if they really want to set
|
|
# this up or not:
|
|
|
|
# Using an absolute path (/usr/bin/gtk-update-icon-cache) will make
|
|
# this script function only on a running system. Otherwise an end-of-
|
|
# install script will take care of this job.
|
|
|
|
# Don't make a global cache in /usr/share/icons. Not only is it huge,
|
|
# but it causes problems if it isn't constantly updated.
|
|
# |>@&^^ registries... ;-)
|
|
#
|
|
# /usr/share/icons isn't really a "theme" anyway and shouldn't have a
|
|
# icon-theme.cache file there.
|
|
#
|
|
# If there already is a global cache, rm it:
|
|
rm -f usr/share/icons/icon-theme.cache
|
|
|
|
# Update hicolor theme cache:
|
|
if [ -d usr/share/icons/hicolor ]; then
|
|
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then # ONLY run this if 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
|