diff options
| author | BardofSprites <[email protected]> | 2025-03-16 17:35:23 -0400 |
|---|---|---|
| committer | BardofSprites <[email protected]> | 2025-03-16 17:35:23 -0400 |
| commit | 3b6bbb901ae3d05ef281a7ab8e9e5f40fe868e39 (patch) | |
| tree | 1da92ce735c6b51f27fc8e085e377b5c46850c4a /xmonad/.config | |
| parent | 2c50c8242d69f24cb40abdd7c7a6be3365a9b36b (diff) | |
shifting workspaces/screen
Diffstat (limited to 'xmonad/.config')
| -rw-r--r-- | xmonad/.config/xmonad/xmonad.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/xmonad/.config/xmonad/xmonad.hs b/xmonad/.config/xmonad/xmonad.hs index 6d58097..9605469 100644 --- a/xmonad/.config/xmonad/xmonad.hs +++ b/xmonad/.config/xmonad/xmonad.hs @@ -101,9 +101,14 @@ myKeys = , ("M-S-9", windows $ W.shift (myWorkspaces !! 8)) , ("M-S-0", windows $ W.shift (myWorkspaces !! 9)) + -- shifting + , ("M-`", toggleWS) + -- monitors , ("M-S-l", nextScreen) , ("M-S-h", prevScreen) + , ("M-C-h", shiftPrevScreen) + , ("M-C-l", shiftNextScreen) -- system programs , ("M-<Return>", spawn term) |
