From: Simon Ruderich Date: Sun, 17 Jun 2018 06:18:45 +0000 (+0200) Subject: xmonad: adapt bindings to current herbstluftwm setup X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=9794ccb42cc66b335db879f53eb6609695dcc415 xmonad: adapt bindings to current herbstluftwm setup --- 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).