X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=xmonad.hs;h=df3043516ec22e996a591fb23818a7cd1295b2b5;hb=890c966b01152321b5e20315bb77b7f9f854b154;hp=48d30bb4babcbb40d3ef467e6f259b22c6d89b15;hpb=6cbf000ab407abde66f4775f23f804acca69feb2;p=config%2Fdotfiles.git 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