aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Actions/CycleWindows.hs
diff options
context:
space:
mode:
authorAdam Vogt <vogt.adam@gmail.com>2009-10-22 06:11:26 +0200
committerAdam Vogt <vogt.adam@gmail.com>2009-10-22 06:11:26 +0200
commit36728ae60e3effdfe645a9a34cfd2e1067a37516 (patch)
tree153d6eaf1780df2802bb8e5acefac9cbeda4d849 /XMonad/Actions/CycleWindows.hs
parent0c9f1ac69bad6af19f3129ec50c4899bac5c149a (diff)
downloadXMonadContrib-36728ae60e3effdfe645a9a34cfd2e1067a37516.tar.gz
XMonadContrib-36728ae60e3effdfe645a9a34cfd2e1067a37516.tar.xz
XMonadContrib-36728ae60e3effdfe645a9a34cfd2e1067a37516.zip
Refer to modm as the current modMask
Ignore-this: d097c7dc1746c55e1d4078a7148f9d5a This makes the config suggestions consistent with the current template. darcs-hash:20091022041126-1499c-5dd63076fdd71a61276cfc8e648bada81d9cc586.gz
Diffstat (limited to '')
-rw-r--r--XMonad/Actions/CycleWindows.hs14
1 files changed, 7 insertions, 7 deletions
diff --git a/XMonad/Actions/CycleWindows.hs b/XMonad/Actions/CycleWindows.hs
index 143cfce..1a21957 100644
--- a/XMonad/Actions/CycleWindows.hs
+++ b/XMonad/Actions/CycleWindows.hs
@@ -64,11 +64,11 @@ import Control.Arrow (second)
-- >
-- > -- make sure mod matches keysym
-- > , ((mod4Mask, xK_s), cycleRecentWindows [xK_Super_L] xK_s xK_w)
--- > , ((modMask x, xK_z), rotOpposite)
--- > , ((modMask x , xK_i), rotUnfocusedUp)
--- > , ((modMask x , xK_u), rotUnfocusedDown)
--- > , ((modMask x .|. controlMask, xK_i), rotFocusedUp)
--- > , ((modMask x .|. controlMask, xK_u), rotFocusedDown)
+-- > , ((modm, xK_z), rotOpposite)
+-- > , ((modm , xK_i), rotUnfocusedUp)
+-- > , ((modm , xK_u), rotUnfocusedDown)
+-- > , ((modm .|. controlMask, xK_i), rotFocusedUp)
+-- > , ((modm .|. controlMask, xK_u), rotFocusedDown)
--
-- Also, if you use focus follows mouse, you will want to read the section
-- on updating the mouse pointer below. For detailed instructions on
@@ -88,9 +88,9 @@ to the point of your choice on the current window:
and either
> -- modify the window rotation bindings
-> , ((modMask x .|. controlMask, xK_i ), rotFocusedUp
+> , ((modm .|. controlMask, xK_i ), rotFocusedUp
> >> updatePointer (Relative 1 1))
-> , ((modMask x .|. controlMask, xK_u ), rotFocusedDown
+> , ((modm .|. controlMask, xK_u ), rotFocusedDown
> >> updatePointer (Relative 1 1))
>
> -- or add to xmonad's logHook