diff options
author | Alec Berryman <alec@thened.net> | 2007-04-12 15:20:33 +0200 |
---|---|---|
committer | Alec Berryman <alec@thened.net> | 2007-04-12 15:20:33 +0200 |
commit | 4cea184f31b1f33e3548207518aaf0c065f01594 (patch) | |
tree | da5d4e3c4859901b2a29506117a6ded4e2f545af | |
parent | c53fa5386ffb07722f5956dbc32cbba37c8400fc (diff) | |
download | xmonad-4cea184f31b1f33e3548207518aaf0c065f01594.tar.gz xmonad-4cea184f31b1f33e3548207518aaf0c065f01594.tar.xz xmonad-4cea184f31b1f33e3548207518aaf0c065f01594.zip |
mod-wer for Xinerama was inadvertently changed
darcs-hash:20070412132033-39448-2be6f5ab22fabd3c126cbba0bc81017477c1a083.gz
-rw-r--r-- | Config.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -148,6 +148,6 @@ keys = M.fromList $ -- mod-wer (underneath 123) switches to physical/Xinerama screens 1 2 and 3 ++ [((m .|. modMask, key), screenWorkspace sc >>= f) - | (key, sc) <- zip [xK_s, xK_d, xK_f] [0..] + | (key, sc) <- zip [xK_w, xK_e, xK_r] [0..] , (f, m) <- [(view, 0), (tag, shiftMask)]] |