summaryrefslogtreecommitdiffstats
path: root/files/draklive-install.d/run.d/generate-gtk-icon-cache.sh
blob: cd656473fd8c17e6b2f5bc5506a60aa9b4d2b109 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

for icondir in /usr/share/icons/*; do 
	if [ -d "$icondir" -a -f "$icondir/index.theme" ]; then 
		/usr/bin/gtk-update-icon-cache --force --quiet "$icondir";
	fi
done
if [ -d "/home/live" ]; then 
    chown -R live:live /home/live
fi