Skip to content

Instantly share code, notes, and snippets.

@minhajuddin
Created June 16, 2018 16:57
Show Gist options
  • Select an option

  • Save minhajuddin/4c40e5fb0483be9287a8833d7457ff49 to your computer and use it in GitHub Desktop.

Select an option

Save minhajuddin/4c40e5fb0483be9287a8833d7457ff49 to your computer and use it in GitHub Desktop.
import XMonad
main = do
xmonad $ defaultConfig
{ terminal = myTerminal
, modMask = myModMask
, borderWidth = myBorderWidth
}
myTerminal = "urxvt"
myModMask = mod4Mask -- Win key or Super_L
myBorderWidth = 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment