diff options
| author | BardofSprites <[email protected]> | 2025-03-18 12:51:39 -0400 |
|---|---|---|
| committer | BardofSprites <[email protected]> | 2025-03-18 12:51:39 -0400 |
| commit | 34d01d56a9dabc72944a1faeb7b998cdf66f3e0c (patch) | |
| tree | 82adb379c0399c0b6413bcb6bb08bd66271a8b10 | |
| parent | 3b72bd2cd4876a99f62834f6f9fbce6859e72cb7 (diff) | |
screen swapping
| -rw-r--r-- | xmonad/.config/xmonad/xmonad.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xmonad/.config/xmonad/xmonad.hs b/xmonad/.config/xmonad/xmonad.hs index a4673f4..30b0557 100644 --- a/xmonad/.config/xmonad/xmonad.hs +++ b/xmonad/.config/xmonad/xmonad.hs @@ -87,6 +87,9 @@ myKeys = , ("M-9", windows $ W.view (myWorkspaces !! 8)) , ("M-0", windows $ W.view (myWorkspaces !! 9)) + -- greedy view + , ("M-o", swapNextScreen) + -- moving , ("M-S-1", windows $ W.shift (myWorkspaces !! 0)) , ("M-S-2", windows $ W.shift (myWorkspaces !! 1)) |
