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