X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=xmonad.hs;h=758a356cebe7c9110860b016341b00862899c930;hb=8971324ee1a41de35f03dc098e10d0a09a12c520;hp=fcc6461e8f55c2c83bdbfd803799c7f6333c280c;hpb=de3eaee8fea402f67043d7bb4ce77e3a65ce37c2;p=config%2Fdotfiles.git diff --git a/xmonad.hs b/xmonad.hs index fcc6461..758a356 100644 --- a/xmonad.hs +++ b/xmonad.hs @@ -87,7 +87,8 @@ myLayoutHook = gimp = withIM (0.11) (Role "gimp-toolbox") $ reflectHoriz $ withIM (0.15) (Role "gimp-dock") - Full + -- Layouts for the centered window. + (Mirror tiled ||| Full) -- Don't spawn new windows in the master pane (which is at the top of the -- screen). Thanks to dschoepe, aavogt and especially vav in #xmonad on @@ -162,8 +163,8 @@ myKeys = [ -- -- Thanks to the xmonad FAQ, read on 2010-06-16 13:42 CEST -- (http://www.haskell.org/haskellwiki/Xmonad/Frequently_asked_questions). - -- Thanks to MrElendig in #xmonad on Freenode (2010-06-17 17:16 CEST) to - -- use the default XMonad workspaces. + -- Thanks to MrElendig in #xmonad on Freenode (2010-06-17 17:16 CEST) how + -- to use the default xmonad workspaces. [((m .|. mod4Mask, k), windows $ f i) | (i, k) <- zip (XMonad.workspaces defaultConfig) [xK_1 .. xK_9] , (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]