summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-icons
blob: d35f30c0fd4e64c3385091006b24e9abdfb98202 (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