From 9794ccb42cc66b335db879f53eb6609695dcc415 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 17 Jun 2018 08:18:45 +0200 Subject: [PATCH] xmonad: adapt bindings to current herbstluftwm setup --- x11/xmonad/xmonad.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11/xmonad/xmonad.hs b/x11/xmonad/xmonad.hs index e55a3bd..15d4f4d 100644 --- a/x11/xmonad/xmonad.hs +++ b/x11/xmonad/xmonad.hs @@ -138,12 +138,12 @@ myModMask = mod4Mask myKeys :: [((KeyMask, KeySym), X ())] myKeys = [ -- Switch to next layout, but only use the listed layouts. - ((myModMask, xK_space), nextLayoutIncluding ["Default", "Full"]) + ((myModMask, xK_f), nextLayoutIncluding ["Default", "Full"]) -- Switch to vertical tiled layout. , ((myModMask, xK_v), sendMessage $ JumpToLayout "Vertical") -- Switch to limit layout which displays only one window in the lower -- pane. - , ((myModMask, xK_b), sendMessage $ JumpToLayout "Limit") + , ((myModMask, xK_space), nextLayoutIncluding ["Default","Limit"]) -- Switch to last active workspace, thanks to moljac024 in #xmonad on -- Freenode (2010-12-18 14:45 CET). -- 2.43.2