From fa9754e0b61a1a9b586dcaa1d1b989d7861f6c68 Mon Sep 17 00:00:00 2001 From: jasmine Date: Mon, 19 May 2025 12:20:08 +0800 Subject: [PATCH] update workspace logic --- src/xmonad.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xmonad.hs b/src/xmonad.hs index c91d478..fd496e8 100644 --- a/src/xmonad.hs +++ b/src/xmonad.hs @@ -118,8 +118,8 @@ myKeymap = , ("M-5", windows $ W.greedyView "misc" ) -- cycle workspaces - , ("M-", prevWS) - , ("M-" , nextWS) + , ("M-", moveTo Prev hiddenWS) + , ("M-" , moveTo Next hiddenWS) -- send window to workspace , ("M-S-1", windows $ W.shift "code" )