diff options
author | Daniel Wagner <daniel@wagner-home.com> | 2013-01-06 18:44:14 +0100 |
---|---|---|
committer | Daniel Wagner <daniel@wagner-home.com> | 2013-01-06 18:44:14 +0100 |
commit | c98c1047d546353600d482c8ddc721d34c834125 (patch) | |
tree | 92a534c89008510b10060e2db0195ab0717e8dfb | |
parent | eb7fdba8b208db96e68ca8ecb282d55b4734bcf2 (diff) | |
download | metatile-c98c1047d546353600d482c8ddc721d34c834125.tar metatile-c98c1047d546353600d482c8ddc721d34c834125.zip |
use "modm" instead of "modMask" in the sample config
Ignore-this: 75ad65ae7a708bce69f811c28912cc4b
darcs-hash:20130106174414-76d51-d9de9abd7cbf61d586fc1b9515c54f07e890ce85
-rw-r--r-- | man/xmonad.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/xmonad.hs b/man/xmonad.hs index 9aff798..ea99d04 100644 --- a/man/xmonad.hs +++ b/man/xmonad.hs @@ -129,7 +129,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $ , ((modm , xK_q ), spawn "xmonad --recompile; xmonad --restart") -- Run xmessage with a summary of the default keybindings (useful for beginners) - , ((modMask .|. shiftMask, xK_slash ), spawn ("echo \"" ++ help ++ "\" | xmessage -file -")) + , ((modm .|. shiftMask, xK_slash ), spawn ("echo \"" ++ help ++ "\" | xmessage -file -")) ] ++ |