I use xmonad + emacs. Both use ALT key heavily. So there are conflicts sometimes.
My keyboard has WINDOWS key on it. I would like xmonad to use that key instead of ALT.
My current ~/.xmonad/xmonad.hs file looks like this
import XMonad
import XMonad.Config.Gnome
main = xmonad gnomeConfig
How should I change it so that xmonad starts using the WINDOWS key?
e.g. WINDOWS + 3 will switch to workspace 3 instead of ALT+3.
I want xmoand and emacs to live happily together.