Files
gtk4/source-files/gtk-update-icon-cache.sh

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