M7350/oe-core/scripts/postinst-intercepts/update_icon_cache

13 lines
220 B
Plaintext
Raw Permalink Normal View History

2024-09-09 08:57:42 +00:00
#!/bin/sh
set -e
# update native pixbuf loaders
gdk-pixbuf-query-loaders --update-cache
for icondir in $D/usr/share/icons/*/ ; do
if [ -d $icondir ] ; then
gtk-update-icon-cache -fqt $icondir
fi
done