X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=xmonad.hs;h=25fa9a17a46329f5d003e6f5e9dc9c9b0e4ff561;hb=3fa1037f878f2d09372ba7e5a535e85e77c3a170;hp=67d9775f0af538714c00d88624176aa53e1639a3;hpb=f23ba31ae6dd241ede6ca42238a03c542e22e7a3;p=config%2Fdotfiles.git diff --git a/xmonad.hs b/xmonad.hs index 67d9775..25fa9a1 100644 --- a/xmonad.hs +++ b/xmonad.hs @@ -43,7 +43,13 @@ myLayoutHook = smartBorders $ reflectVert $ Mirror tiled ||| Full -- Don't spawn new windows in the master pane (which is now at the bottom of -- the screen). Thanks to dschoepe, aavogt and especially vav in #xmonad on -- Freenode (2009-06-30 02:10f). -myManageHook = doF avoidMaster +-- +-- Also some applications are spawned on specific workspaces. Thanks to +-- dschoepe and ivanm in #xmonad on Freenode (2009-07-12 14:50). +myManageHook = composeAll + [ className =? "Iceweasel" --> doF (W.shift "2") + , className =? "Wireshark" --> doF (W.shift "3") + ] <+> doF avoidMaster main = xmonad $ defaultConfig -- Use Windows key as main key so it doesn't conflict with any other key