mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 22:19:45 +00:00
12 lines
210 B
Bash
Executable file
12 lines
210 B
Bash
Executable file
#!/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."
|