M7350/oe-core/scripts/postinst-intercepts/update_icon_cache
2024-09-09 08:57:42 +00:00

13 lines
220 B
Bash

#!/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