#!/bin/bash # Update the Icon Cache in subdirs under /usr/share/icons updateIconCache() { for i in $(find /usr/share/icons/ -mindepth 1 -maxdepth 1 -type d 2>/dev/null) do changeUser -u $TT_PKG_USER gtk-update-icon-cache -qf $i done }