mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 22:19:45 +00:00
13 lines
210 B
Bash
13 lines
210 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ "$EUID" -ne 0 ]
|
||
|
then echo "Please run as root"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
rm -rf "/usr/share/dwmbar"
|
||
|
rm -f "/usr/bin/dwmbar"
|
||
|
|
||
|
echo "Completed."
|
||
|
echo "Please delete ~/.config/dwmbar manually, if desired."
|