summaryrefslogtreecommitdiff
path: root/config/chroot_local-hooks/01-remove-gnome-icon-cache.chroot
blob: 6aae94340931c270a593889d269361699d3fa598 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

if [ -x /usr/sbin/lightdm ]; then
set -e

# Remove GNOME icon cache.
# has to be generated later
# This saves space some space (11MB on K-LXDE)

rm -f /usr/share/icons/*/icon-theme.cache
fi