diff options
Diffstat (limited to 'XMonad/Config')
-rw-r--r-- | XMonad/Config/Droundy.hs | 6 |
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) |