Created
March 3, 2012 18:38
-
-
Save dpwiz/1967358 to your computer and use it in GitHub Desktop.
My XMonad config
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
-- https://gist.github.com/1967358 | |
import XMonad | |
import XMonad.Config.Xfce | |
import XMonad.Util.CustomKeys | |
import qualified Data.Map as M | |
main = xmonad xfceConfig { | |
modMask = mod4Mask, | |
terminal = "x-terminal-emulator", | |
keys = customKeys delKeys insKeys | |
} | |
delKeys XConfig {modMask = modm} = | |
[ (modm, xK_p) | |
, (modm, xK_t) | |
] | |
insKeys XConfig {modMask = modm} = | |
[ ((modm, xK_p), spawn "dmenu_run -b") | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment