From bdc2567c9fa936179a57f77750fec6db1de505e7 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Fri, 7 Feb 2020 15:16:03 -0700 Subject: Add accordion and circle layouts --- src/Internal/Keys.hs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/Internal/Keys.hs') diff --git a/src/Internal/Keys.hs b/src/Internal/Keys.hs index a397467..c1d1c70 100644 --- a/src/Internal/Keys.hs +++ b/src/Internal/Keys.hs @@ -115,6 +115,9 @@ newKeys = , ((modm, xK_q), spawn "xmonad --recompile && xmonad --restart") , ((modm, xK_z), sendMessage ToggleZoom) + + , ((modm, xK_Tab), windows W.focusDown) + , ((modm .|. shiftMask, xK_Tab), windows W.focusUp) ] mapNumbersAndAlpha :: KeyMask -> (Char -> X ()) -> Map (KeyMask, KeySym) (X ()) -- cgit