Skip to content

Instantly share code, notes, and snippets.

@halferty
Created January 25, 2012 20:01
Show Gist options
  • Save halferty/1678327 to your computer and use it in GitHub Desktop.
Save halferty/1678327 to your computer and use it in GitHub Desktop.
my xmonad config
import XMonad
import XMonad.Config.Gnome
import XMonad.Util.EZConfig
main = xmonad $ gnomeConfig
{ terminal = "gnome-terminal"
, modMask = mod4Mask
}
`additionalKeysP`
-- Lock
[ (("M-S-l"), spawn "gnome-screensaver-command --lock")
-- Logout
, (("M-S-q"), spawn "gnome-session-save --kill --silent")
-- Chromium
, (("M-S-b"), spawn "chromium-browser")
-- Eclipse
, (("M-S-e"), spawn "/home/ed/eclipse/eclipse")
-- Pre-Production VNC
, (("M-S-p"), spawn "remmina -c /home/ed/.remmina/1327034188913.remmina")
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment