dwmbar/uninstall.sh
2019-10-22 23:08:33 +01:00

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."