Added icon cache rebuild script

This commit is contained in:
Josh Sherman 2012-05-07 12:29:59 -04:00
parent 44233d1796
commit 1c399b8d9d

View file

@ -0,0 +1,6 @@
#!/bin/sh
find /usr/share/icons -mindepth 1 -maxdepth 1 -type d | while read -r THEME; do
if [ -f "$THEME/index.theme" ]; then
gtk-update-icon-cache -f -q "$THEME"
fi
done