You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ublinux-init/ublinux/rc.local.d/50-update-cache-gtk-icon

17 lines
541 B

#!/bin/bash
ENABLED=yes
[ "$ENABLED" != "yes" ] && exit 0
DEBUGMODE=no
UPDATEGTKICONOPTS="-fit /usr/share/icons/hicolor"
. /usr/lib/ublinux/functions
. /usr/lib/ublinux/os-config
debug_mode "$0" "$@"
#[ "$UPDATEGTKICONCACHE" != "no" ] && [ -d "/usr/share/icons/hicolor/" ] && gtk-update-icon-cache $UPDATEGTKICONOPTS >/dev/null 2>&1
[ "$UPDATEGTKICONCACHE" != "no" ] && find /usr/share/icons -mindepth 1 -maxdepth 1 -type d | while read -r THEME; do
[ -f "$THEME/index.theme" ] && gtk-update-icon-cache -f -q "$THEME" 2>/dev/null
done