-- 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
, (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