1
0
mirror of https://github.com/xmonad/xmonad-contrib.git synced 2025-07-26 17:51:51 -07:00

CycleWS: change example binding for toggleWS from mod-t to mod-z. example bindings shouldn't conflict with default key bindings.

This commit is contained in:
Brent Yorgey
2008-02-01 20:21:26 +00:00
parent 5492a1265e
commit e6d229e8e1

@@ -88,7 +88,7 @@ import XMonad.Util.WorkspaceCompare
-- > , ((modMask x, xK_Left), prevScreen) -- > , ((modMask x, xK_Left), prevScreen)
-- > , ((modMask x .|. shiftMask, xK_Right), shiftNextScreen) -- > , ((modMask x .|. shiftMask, xK_Right), shiftNextScreen)
-- > , ((modMask x .|. shiftMask, xK_Left), shiftPrevScreen) -- > , ((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: -- If you want to follow the moved window, you can use both actions:
-- --