2016-03-02 19:26:08 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
gdk-pixbuf-query-loaders --update-cache
|
2017-11-05 22:02:34 +02:00
|
|
|
# gtk-update-icon-cache comes with gtk, not with gtk3
|
|
|
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
|
|
|
gtk-update-icon-cache -q -t -f /usr/share/icons/Adwaita
|
|
|
|
fi
|