diff options
| author | Josh Rahm <rahm@google.com> | 2022-03-28 10:01:01 -0600 |
|---|---|---|
| committer | Josh Rahm <rahm@google.com> | 2022-03-28 10:01:01 -0600 |
| commit | 67f325a17b81d7818db8d17ce261f5cda3d2ed93 (patch) | |
| tree | 02baee57c408816a961f69e17b6af696cec0e957 /src/Internal/ScreenRotate.hs | |
| parent | cfb489be45b8222c4984b344ee4e1f2e760dd3b7 (diff) | |
| parent | a7129b68fb7fa4f7cea52513fad7223dcbba9801 (diff) | |
| download | rde-67f325a17b81d7818db8d17ce261f5cda3d2ed93.tar.gz rde-67f325a17b81d7818db8d17ce261f5cda3d2ed93.tar.bz2 rde-67f325a17b81d7818db8d17ce261f5cda3d2ed93.zip | |
Merge branch 'v017' of git.josher.dev:rde into v017
Diffstat (limited to 'src/Internal/ScreenRotate.hs')
| -rw-r--r-- | src/Internal/ScreenRotate.hs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Internal/ScreenRotate.hs b/src/Internal/ScreenRotate.hs new file mode 100644 index 0000000..ff6417c --- /dev/null +++ b/src/Internal/ScreenRotate.hs @@ -0,0 +1,19 @@ +module Internal.ScreenRotate where + +import XMonad.StackSet as W + +screenRotateForward :: W.StackSet i l a sid sd -> W.StackSet i l a sid sd +screenRotateForward (W.StackSet current visible others floating) = do + let screens = current : visible + workspaces = tail $ cycle $ map W.workspace screens + (current':visible') = zipWith (\s w -> s {workspace = w} ) screens workspaces + in W.StackSet current' visible' others floating + +screenRotateBackward :: W.StackSet i l a sid sd -> W.StackSet i l a sid sd +screenRotateBackward (W.StackSet current visible others floating) = do + let screens = current : visible + workspaces = rcycle $ map W.workspace screens + (current':visible') = zipWith (\s w -> s {workspace = w} ) screens workspaces + in W.StackSet current' visible' others floating + + where rcycle l = last l : l |