From 5f9a6f7a3136952681443792cf38640be684f686 Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Sun, 11 Oct 2020 14:02:54 -0500 Subject: [PATCH] - Fixed uninstaller for xfce & kde on restoring original shortcut keys --- xkeysnail_service.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xkeysnail_service.sh b/xkeysnail_service.sh index 0e9e320..8d68688 100755 --- a/xkeysnail_service.sh +++ b/xkeysnail_service.sh @@ -60,13 +60,13 @@ function uninstall { fi elif [ "$dename" == "kde" ]; then echo "Restoring DE hotkeys..." - kwinkeys = $(ls | grep -m1 "kwinrc") - kdekeys = $(ls | grep -m1 "kglobalshortcutsrc") + kwinkeys=$(ls | grep -m1 "kwinrc") + kdekeys=$(ls | grep -m1 "kglobalshortcutsrc") cp ./"$kdekeys" ~/.config/kglobalshortcutsrc cp ./"$kwinkeys" ~/.config/kwinrc elif [ "$dename" == "xfce" ]; then echo "Restoring DE hotkeys..." - xfcekeys = $(ls | grep -m1 "xfce4-keyboard") + xfcekeys=$(ls | grep -m1 "xfce4-keyboard") cp ./"$xfcekeys" ~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml fi fi