summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-icons
blob: 3c018b354e76f8901c46e83f2016b78940da23d7 (plain)
1
2
3
4
5
6
7
if which gtk-update-icon-cache >/dev/null 2>&1; then
	for dir in #DIRLIST#; do
		if [ -f "$dir"/icon-theme.cache ]; then
			gtk-update-icon-cache --force --quiet "$dir"
		fi
	done
fi