From 475a99a72e43a3ebd8c5761d67309f5ac9d90e6d Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Tue, 7 Apr 2020 10:05:36 -0600 Subject: Add the ability to swap screens using Mod4-Mod1-aoe --- src/Internal/Keys.hs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Internal/Keys.hs') diff --git a/src/Internal/Keys.hs b/src/Internal/Keys.hs index 83d2e08..75a1de9 100644 --- a/src/Internal/Keys.hs +++ b/src/Internal/Keys.hs @@ -113,6 +113,10 @@ newKeys markContext = , ((modm .|. shiftMask, xK_o), runXPlus markContext config (withScreen W.shift 1)) , ((modm .|. shiftMask, xK_e), runXPlus markContext config (withScreen W.shift 2)) + , ((modm .|. mod1Mask, xK_a), runXPlus markContext config (withScreen W.greedyView 0)) + , ((modm .|. mod1Mask, xK_o), runXPlus markContext config (withScreen W.greedyView 1)) + , ((modm .|. mod1Mask, xK_e), runXPlus markContext config (withScreen W.greedyView 2)) + -- Buttons programmed on my mouse. , ((shiftMask, xK_F1), withFocused $ windows . W.sink) , ((shiftMask, xK_F2), sendMessage ToggleZoom) -- cgit