Skip to content

Instantly share code, notes, and snippets.

@justinabrahms
Created October 2, 2009 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinabrahms/200105 to your computer and use it in GitHub Desktop.
Save justinabrahms/200105 to your computer and use it in GitHub Desktop.
import XMonad
import XMonad.Config.Gnome
import XMonad.Util.EZConfig
import XMonad.Actions.CycleWS
main = xmonad $ gnomeConfig {
terminal = "gnome-terminal"
, modMask = mod4Mask
}
`additionalKeysP`
[ ("M1-C-h", prevWS)
, ("M1-C-l", nextWS)
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment