desktop/kde-common/chakra-update-icons.sh

18 lines
272 B
Bash
Raw Normal View History

2010-05-21 07:48:47 +08:00
#!/bin/bash
update_xdg_icons() {
echo -n " > Rebuilding xdg icon database ..."
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
echo " DONE"
}
if [ $UID -ne 0 ]; then
echo " "
echo "Only root can run $0"
echo " "
exit 1
fi
update_xdg_icons