From e9a3867a4f39e30a2b94625428770f56d45580aa Mon Sep 17 00:00:00 2001 From: "Archie Hilton (thytom)" Date: Tue, 22 Oct 2019 23:08:33 +0100 Subject: Added uninstall script and tweaked install.sh --- uninstall.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 uninstall.sh (limited to 'uninstall.sh') diff --git a/uninstall.sh b/uninstall.sh new file mode 100755 index 0000000..37f1322 --- /dev/null +++ b/uninstall.sh @@ -0,0 +1,12 @@ +#!/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." -- cgit v1.2.3