#!/bin/sh for icons in /usr/share/icons/*; do if [ -e "$icons"/index.theme ]; then gtk-update-icon-cache -q -f "$icons" fi done