]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - xmonad.hs
xinitrc: Display reminders using notify.py.
[config/dotfiles.git] / xmonad.hs
index fcc6461e8f55c2c83bdbfd803799c7f6333c280c..758a356cebe7c9110860b016341b00862899c930 100644 (file)
--- 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)]]