mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
18 lines
272 B
Bash
18 lines
272 B
Bash
#!/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
|
|
|