summarylogtreecommitdiffstats
path: root/compiz-gtk-update-icon-cache.script
blob: 8d9b553840575aed8baa5453c36c74b7cf54db61 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

while read -r f; do
  if [[ -d ${f}scalable ]]; then
    gtk-update-icon-cache -t -q "$f"
  elif [[ -d $f ]]; then
    rm -f "${f}icon-theme.cache"
    rmdir --ignore-fail-on-non-empty "$f"
  fi
done