Created
June 16, 2018 16:57
-
-
Save minhajuddin/4c40e5fb0483be9287a8833d7457ff49 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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