From: Simon Ruderich Date: Sun, 18 Jul 2010 22:48:47 +0000 (+0200) Subject: xmonad.hs: Minor documentation fixes. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=14d483b4676ccf95a93d3cedcf39c057752b3bba xmonad.hs: Minor documentation fixes. --- diff --git a/xmonad.hs b/xmonad.hs index 48d30bb..df30435 100644 --- 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