]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
xmonad.hs: Don't automatically move workspaces in multi screen setup.
authorSimon Ruderich <simon@ruderich.org>
Thu, 17 Jun 2010 15:06:40 +0000 (17:06 +0200)
committerSimon Ruderich <simon@ruderich.org>
Thu, 17 Jun 2010 15:06:40 +0000 (17:06 +0200)
xmonad.hs

index a09b826818e6dc671a372d2e82232edc05c96eb2..e73e1c56debe1f6ff528bbc47212e4f8efd0499b 100644 (file)
--- a/xmonad.hs
+++ b/xmonad.hs
@@ -71,11 +71,26 @@ myManageHook = composeOne
     , return True -?> doF W.focusDown
     ]
 
+-- My workspaces, same as default ones. Used below in myKeys.
+myWorkspaces = ["1", "2", "3", "4", "5", "6", "7", "8", "9"]
+
 myKeys = [
         -- Switch to additional layout (vertical tiled) defined by
         -- toggleLayouts above.
         ((mod4Mask, xK_v), sendMessage ToggleLayout)
     ]
+    ++
+    -- When using multiple screens, switching to another workspace causes
+    -- Xmonad to pull the workspace to the current screen if it was also
+    -- displayed on another one. This is confusing for me so the following
+    -- code changes it to just switch to the screen where the workspace is
+    -- already displayed.
+    --
+    -- Thanks to the Xmonad FAQ, read on 2010-06-16 13:42
+    -- (http://www.haskell.org/haskellwiki/Xmonad/Frequently_asked_questions).
+    [((m .|. mod4Mask, k), windows $ f i)
+        | (i, k) <- zip myWorkspaces [xK_1 .. xK_9]
+        , (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]
 
 main = xmonad $ defaultConfig
     -- Use Windows key as main key so it doesn't conflict with any other key