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).