]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - xmonad.hs
xmonad: Add configuration file.
[config/dotfiles.git] / xmonad.hs
1 -- Xmonad configuration file.
2
3
4 import XMonad
5
6 main = xmonad $ defaultConfig
7     -- Use Windows key as main key so it doesn't conflict with any other key
8     -- bindings.
9     { modMask = mod4Mask
10     -- Inactive borders are black - invisible on my black screen.
11     , normalBorderColor = "#000000"
12     -- Active border is dark red.
13     , focusedBorderColor = "#990000" }