diff options
author | Brent Yorgey <byorgey@gmail.com> | 2008-02-01 21:21:26 +0100 |
---|---|---|
committer | Brent Yorgey <byorgey@gmail.com> | 2008-02-01 21:21:26 +0100 |
commit | 354eefc902f0074a18bb3f0c6d27304203927df4 (patch) | |
tree | 24afe2679392267e0782f34fe24cb7932809daf3 /XMonad | |
parent | 6b4aa7efb8a2a9c82a8610ae8ab25108e32d1e15 (diff) | |
download | XMonadContrib-354eefc902f0074a18bb3f0c6d27304203927df4.tar.gz XMonadContrib-354eefc902f0074a18bb3f0c6d27304203927df4.tar.xz XMonadContrib-354eefc902f0074a18bb3f0c6d27304203927df4.zip |
CycleWS: change example binding for toggleWS from mod-t to mod-z. example bindings shouldn't conflict with default key bindings.
darcs-hash:20080201202126-bd4d7-b8f30a97c7b6498e6e552df306b52511d9e50868.gz
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Actions/CycleWS.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Actions/CycleWS.hs b/XMonad/Actions/CycleWS.hs index 463c449..00dc53d 100644 --- a/XMonad/Actions/CycleWS.hs +++ b/XMonad/Actions/CycleWS.hs @@ -88,7 +88,7 @@ import XMonad.Util.WorkspaceCompare -- > , ((modMask x, xK_Left), prevScreen) -- > , ((modMask x .|. shiftMask, xK_Right), shiftNextScreen) -- > , ((modMask x .|. shiftMask, xK_Left), shiftPrevScreen) --- > , ((modMask x, xK_t), toggleWS) +-- > , ((modMask x, xK_z), toggleWS) -- -- If you want to follow the moved window, you can use both actions: -- |