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

if [ -x /usr/sbin/lightdm ]; then
    # only on i386
    if ! [ -d /lib/x86_64-linux-gnu ]; 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
fi