]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
xmonad: adapt bindings to current herbstluftwm setup
authorSimon Ruderich <simon@ruderich.org>
Sun, 17 Jun 2018 06:18:45 +0000 (08:18 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sun, 17 Jun 2018 06:18:45 +0000 (08:18 +0200)
x11/xmonad/xmonad.hs

index e55a3bd45d459d14525a12fbba798a20d8aee6c2..15d4f4d3a39e50278cc39e4fe9a85984a964eab1 100644 (file)
@@ -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).