]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
xmonad.hs: Minor documentation fixes.
authorSimon Ruderich <simon@ruderich.org>
Sun, 18 Jul 2010 22:48:47 +0000 (00:48 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sun, 18 Jul 2010 22:48:47 +0000 (00:48 +0200)
xmonad.hs

index 48d30bb4babcbb40d3ef467e6f259b22c6d89b15..df3043516ec22e996a591fb23818a7cd1295b2b5 100644 (file)
--- a/xmonad.hs
+++ b/xmonad.hs
@@ -72,7 +72,7 @@ myManageHook = composeOne
     -- Wine on "4".
     , className =? "Wine"               -?> doF (W.shift "4")
 
-    -- Don't span new windows in the master pane.
+    -- Don't spawn new windows in the master pane.
     , return True -?> doF avoidMaster
     -- Prevent windows which get moved to other workspaces from removing the
     -- focus of the currently selected window. Thanks to vav in #xmonad on
@@ -101,19 +101,19 @@ myKeys = [
         , (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
+    -- Use Windows key as main key as it doesn't conflict with any other key
     -- bindings.
     { modMask = mod4Mask
     -- Inactive borders are black - invisible on my black screen.
     , normalBorderColor = "#000000"
-    -- Active border is dark red.
+    -- Active borders are dark red.
     , focusedBorderColor = "#990000"
     -- Use my layout and manage hooks (see above).
     , layoutHook = myLayoutHook
     , manageHook = myManageHook
     -- Use unicode rxvt as my terminal.
     , terminal = "urxvt"
-    -- Necessary for java so it recognizes XMonad as tiling window manager.
+    -- Necessary for Java so it recognizes XMonad as tiling window manager.
     , startupHook = setWMName "LG3D"
     }
     `additionalKeys` myKeys