From ead90abf945e75cc686223ef9ed7346f40dd3d18 Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Thu, 2 Apr 2020 13:25:03 -0500 Subject: [PATCH] - Partial update for uninstaller --- uninstall.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/uninstall.sh b/uninstall.sh index 266eb11..e1424ca 100755 --- a/uninstall.sh +++ b/uninstall.sh @@ -1,9 +1,13 @@ #!/bin/bash -systemctl --user stop keyswap +systemctl --user stop keyswap 2>/dev/null systemctl --user disable keyswap +systemctl --user stop keyswap.timer 2>/dev/null +systemctl --user disable keyswap.timer +rm ~/.config/systemd/user/keyswap.service +rm ~/.config/systemd/user/keyswap.timer rm -rf ~/.config/autostart/kinto.desktop rm -rf ~/.config/kinto rm -rf ~/.xkb - -sed -i '/xkb/d' ~/.Xsession \ No newline at end of file +systemctl daemon-reload +sed -i '/xkb/d' ~/.Xsession 2>/dev/null \ No newline at end of file