mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-28 10:02:43 +01:00
f2d1ae8545
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
13 lines
389 B
Bash
13 lines
389 B
Bash
|
|
if [ -e usr/share/icons/Crule/icon-theme.cache ]; then
|
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
|
/usr/bin/gtk-update-icon-cache -f usr/share/icons/Crule >/dev/null 2>&1
|
|
fi
|
|
fi
|
|
|
|
if [ -e usr/share/icons/Crule-dark/icon-theme.cache ]; then
|
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
|
/usr/bin/gtk-update-icon-cache -f usr/share/icons/Crule-dark >/dev/null 2>&1
|
|
fi
|
|
fi
|
|
|