home/end for screen navigation

This commit is contained in:
♥ Minnie ♥ 2024-02-06 20:42:55 +08:00
parent b6ee5bf201
commit b1a5050a9e

View file

@ -67,10 +67,10 @@ myKeys =
, ((myModMask .|. shiftMask, xK_Left ), shiftTo Prev hiddenWS ) -- %! Move focused window to the previous hidden workspace , ((myModMask .|. shiftMask, xK_Left ), shiftTo Prev hiddenWS ) -- %! Move focused window to the previous hidden workspace
-- monitors -- monitors
, ((myModMask, xK_period ), nextScreen ) -- %! Move focus to the next screen , ((myModMask, xK_End ), nextScreen ) -- %! Move focus to the next screen
, ((myModMask, xK_comma ), prevScreen ) -- %! Move focus to the previous screen , ((myModMask, xK_Home ), prevScreen ) -- %! Move focus to the previous screen
, ((myModMask .|. shiftMask, xK_period ), shiftNextScreen ) -- %! Move focused window to the next screen , ((myModMask .|. shiftMask, xK_End ), shiftNextScreen ) -- %! Move focused window to the next screen
, ((myModMask .|. shiftMask, xK_comma ), shiftPrevScreen ) -- %! Move focused window to the previous screen , ((myModMask .|. shiftMask, xK_Home ), shiftPrevScreen ) -- %! Move focused window to the previous screen
] ]
-- | Layouts -- | Layouts