summaryrefslogtreecommitdiff
path: root/kanotix-lxde-extra/kanotix-lxde-upstart
blob: ec5dcb5af1625e8968f3e3f2942861215109a4a7 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

# generate icon-cache deleted in live-build
if ! [ -e /usr/share/icons/nuoveXT2/icon-theme.cache ]; then
find /usr/share/icons -mindepth 1 -maxdepth 1 -type d | while read -r ICON; do
if [ -f "$ICON/index.theme" ]; then
    gtk-update-icon-cache-3.0 -f -q "$ICON"
fi
done
fi