dwmbar/uninstall.sh

13 lines
210 B
Bash
Raw Normal View History

#!/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."