aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Config/Droundy.hs
diff options
context:
space:
mode:
authorBrent Yorgey <byorgey@gmail.com>2008-02-01 19:06:18 +0100
committerBrent Yorgey <byorgey@gmail.com>2008-02-01 19:06:18 +0100
commit6b4aa7efb8a2a9c82a8610ae8ab25108e32d1e15 (patch)
tree9478cd5f10b54294cc56dc4cbce04e755f4f620c /XMonad/Config/Droundy.hs
parenta99d18cccbaa0d2c26d4d85b2bf7fb13eb9462c5 (diff)
downloadXMonadContrib-6b4aa7efb8a2a9c82a8610ae8ab25108e32d1e15.tar.gz
XMonadContrib-6b4aa7efb8a2a9c82a8610ae8ab25108e32d1e15.tar.xz
XMonadContrib-6b4aa7efb8a2a9c82a8610ae8ab25108e32d1e15.zip
REMOVE RotView: use CycleWS instead.
See CycleWS docs for info on switching, or just look at the changes to XMonad.Config.Droundy. darcs-hash:20080201180618-bd4d7-7b4deec416c0afd7926b44652bd00cfede1e5e17.gz
Diffstat (limited to 'XMonad/Config/Droundy.hs')
-rw-r--r--XMonad/Config/Droundy.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/XMonad/Config/Droundy.hs b/XMonad/Config/Droundy.hs
index 5538376..a4b34f7 100644
--- a/XMonad/Config/Droundy.hs
+++ b/XMonad/Config/Droundy.hs
@@ -39,7 +39,7 @@ import XMonad.Prompt.Shell
import XMonad.Actions.CopyWindow
import XMonad.Actions.DynamicWorkspaces
-import XMonad.Actions.RotView
+import XMonad.Actions.CycleWS
import XMonad.Hooks.ManageDocks
import XMonad.Hooks.UrgencyHook
@@ -83,8 +83,8 @@ keys x = M.fromList $
layoutScreens 1 (fixedLayout [Rectangle 0 0 1024 768]))
, ((modMask x .|. shiftMask .|. controlMask, xK_z),
layoutScreens 1 (fixedLayout [Rectangle 0 0 1440 900]))
- , ((modMask x .|. shiftMask, xK_Right), rotView True)
- , ((modMask x .|. shiftMask, xK_Left), rotView False)
+ , ((modMask x .|. shiftMask, xK_Right), moveTo Next NonEmptyWS)
+ , ((modMask x .|. shiftMask, xK_Left), moveTo Prev NonEmptyWS)
, ((modMask x, xK_Right), sendMessage $ Go R)
, ((modMask x, xK_Left), sendMessage $ Go L)
, ((modMask x, xK_Up), sendMessage $ Go U)