summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-icons
blob: 951b613d008babbc3bce9b3e1c415717608ae93b (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"/index.theme ] && [ -f "$dir"/icon-theme.cache ]; then
			gtk-update-icon-cache --force --quiet "$dir"
		fi
	done
fi