feat(xmonad): Configure keys to manage multiple screens

This commit is contained in:
Alexander Kobjolke 2024-05-26 13:20:43 +02:00
parent 7ecdde85db
commit 36a0e575aa

View file

@ -115,7 +115,11 @@ myConfig =
, ("M-w", kill)
, ("M-l", WS.toggleWS)
, ("M-g", WS.prevWS)
, ("M-C-g", WS.swapPrevScreen)
, ("M-S-g", WS.shiftPrevScreen)
, ("M-r", WS.nextWS)
, ("M-C-r", WS.swapNextScreen)
, ("M-S-r", WS.shiftNextScreen)
, -- scratchpads
("M-s M-s", namedScratchpadAction scratchpads "notes")
, ("M-s s", namedScratchpadAction scratchpads "shell")