From d5659868e1af39aabf0996ffebb1132c4016b5db Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Sun, 2 Feb 2020 00:21:35 -0700 Subject: Add kill shortcut as Mod-Shift-C --- src/Internal/Keys.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Internal/Keys.hs b/src/Internal/Keys.hs index 6ce3ffa..4cefae8 100644 --- a/src/Internal/Keys.hs +++ b/src/Internal/Keys.hs @@ -39,6 +39,7 @@ newKeys = , ((modm, xK_r), (void $ spawn "dmenu_run")) , ((modm .|. shiftMask, xK_r), (void $ spawn "gmrun")) , ((modm .|. mod1Mask, xK_l), (void $ spawn "xscreensaver-command -lock")) + , ((modm .|. shiftMask, xK_c), kill) , ((modm, xK_t), (void $ spawn (terminal config))) , ((modm, xK_m), (submap $ mapAlpha modm (markCurrentWindow markContext))) , ((modm, xK_apostrophe), (submap $ -- cgit