X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=xmonad%2Fxmonad.hs;h=26d0b3fd3a1831ffa9a1e6d212c85507ec7e8cd6;hb=68549fc3a717992a4ca4ca8aed7d9d71a3219e62;hp=644f48316375a27342ff521e5ce4418812efc635;hpb=784b61b58c66b7a3521a8ed4f46a2a7143382eb7;p=config%2Fdotfiles.git diff --git a/xmonad/xmonad.hs b/xmonad/xmonad.hs index 644f483..26d0b3f 100644 --- a/xmonad/xmonad.hs +++ b/xmonad/xmonad.hs @@ -156,8 +156,8 @@ nextLayoutIncluding' layouts iterations = do -- Found allowed layout, show it. else refresh --- Use additional workspaces. Access with alt 1,2,..,9,0 for the first ten, --- f1,f2,..,f10 for the second ten workspaces (see mappings below). +-- Use additional workspaces. Access with meta 1,2,..,9,0 for the first ten, +-- meta f1,f2,..,f10 for the second ten workspaces (see mappings below). myWorkspaces = map show [1 .. 20 :: Int] -- Use Windows (= Super) key as main key as it doesn't conflict with any other @@ -188,7 +188,7 @@ myKeys = [ -- (http://www.haskell.org/haskellwiki/Xmonad/Frequently_asked_questions). -- Thanks to MrElendig in #xmonad on Freenode (2010-06-17 17:16 CEST) how -- to use the default xmonad workspaces. Thanks to geekosaur and OODavo in - -- #xmonad on Freenode (2012-12-23 01:14 CET) how to use my workspaces. + -- #xmonad on Freenode (2012-12-23 01:14 CET) how to use more workspaces. [((m .|. myModMask, k), windows $ f i) | (i, k) <- zip myWorkspaces ([xK_1 .. xK_9] ++ [xK_0] -- 1..9,0 ++ [xK_F1 .. xK_F10]) -- f1..f10