Skip to content

Commit

Permalink
First commit, changing border colors, standard terminal and removing …
Browse files Browse the repository at this point in the history
…bindings to M-w anf M-b
  • Loading branch information
knaveofdiamonds committed Dec 3, 2009
0 parents commit 826d692
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions xmonad.hs
@@ -0,0 +1,11 @@
import XMonad
import XMonad.Util.EZConfig

main :: IO()
main = xmonad $ defaultConfig
{ terminal = "urxvt -bg black -fg white +sb"
, normalBorderColor = "#161616"
, focusedBorderColor = "#660000"
}
`removeKeys` [(mod1Mask, xK_b)]
`removeKeys` [(mod1Mask, xK_w)]

0 comments on commit 826d692

Please sign in to comment.