Skip to content

Instantly share code, notes, and snippets.

@robertseaton
Created April 16, 2011 14:39
Show Gist options
  • Save robertseaton/923155 to your computer and use it in GitHub Desktop.
Save robertseaton/923155 to your computer and use it in GitHub Desktop.
XMonad Configuration
import XMonad
import XMonad.Util.EZConfig
main = xmonad $ defaultConfig
{
terminal = "urxvt" ,
modMask = mod4Mask ,
borderWidth = 2 ,
focusedBorderColor = "#392929"
}
`additionalKeysP`
[
("M-e", spawn "emacs") ,
("M-b", spawn "conkeror")
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment