From b1a5050a9e3c66028158b546d407bbd70d6feaea Mon Sep 17 00:00:00 2001 From: sajenim Date: Tue, 6 Feb 2024 20:42:55 +0800 Subject: [PATCH] home/end for screen navigation --- pkgs/xmonad-config/src/xmonad.hs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/xmonad-config/src/xmonad.hs b/pkgs/xmonad-config/src/xmonad.hs index 02e20df..fedb121 100644 --- a/pkgs/xmonad-config/src/xmonad.hs +++ b/pkgs/xmonad-config/src/xmonad.hs @@ -67,10 +67,10 @@ myKeys = , ((myModMask .|. shiftMask, xK_Left ), shiftTo Prev hiddenWS ) -- %! Move focused window to the previous hidden workspace -- monitors - , ((myModMask, xK_period ), nextScreen ) -- %! Move focus to the next screen - , ((myModMask, xK_comma ), prevScreen ) -- %! Move focus to the previous screen - , ((myModMask .|. shiftMask, xK_period ), shiftNextScreen ) -- %! Move focused window to the next screen - , ((myModMask .|. shiftMask, xK_comma ), shiftPrevScreen ) -- %! Move focused window to the previous screen + , ((myModMask, xK_End ), nextScreen ) -- %! Move focus to the next screen + , ((myModMask, xK_Home ), prevScreen ) -- %! Move focus to the previous screen + , ((myModMask .|. shiftMask, xK_End ), shiftNextScreen ) -- %! Move focused window to the next screen + , ((myModMask .|. shiftMask, xK_Home ), shiftPrevScreen ) -- %! Move focused window to the previous screen ] -- | Layouts