mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
2a0e5b16de
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
7 lines
249 B
Bash
7 lines
249 B
Bash
for theme_dir in usr/share/icons/Tela usr/share/icons/Tela-dark; do
|
|
if [ -e $theme_dir/icon-theme.cache ]; then
|
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
|
/usr/bin/gtk-update-icon-cache -f $theme_dir >/dev/null 2>&1
|
|
fi
|
|
fi
|
|
done
|