diff options
| author | Josh Rahm <rahm@google.com> | 2023-12-07 12:38:10 -0700 |
|---|---|---|
| committer | Josh Rahm <rahm@google.com> | 2023-12-07 12:38:10 -0700 |
| commit | 33879cd90b0dd488540f7526d3eceab152a23d0f (patch) | |
| tree | e47060d7caf24fb4cd399a1c7f8377e7275cef8f /src/Rahm/Desktop/Layout.hs | |
| parent | 83543b4972edcebf3d9e568ed6a556ce074daa06 (diff) | |
| download | rde-33879cd90b0dd488540f7526d3eceab152a23d0f.tar.gz rde-33879cd90b0dd488540f7526d3eceab152a23d0f.tar.bz2 rde-33879cd90b0dd488540f7526d3eceab152a23d0f.zip | |
WIP trying to use pin-window as a layout. Not really working too well
Diffstat (limited to 'src/Rahm/Desktop/Layout.hs')
| -rw-r--r-- | src/Rahm/Desktop/Layout.hs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Rahm/Desktop/Layout.hs b/src/Rahm/Desktop/Layout.hs index d71989f..f6fb49e 100644 --- a/src/Rahm/Desktop/Layout.hs +++ b/src/Rahm/Desktop/Layout.hs @@ -18,6 +18,7 @@ import Rahm.Desktop.Layout.List nil, (|:), ) +import Rahm.Desktop.Layout.PinWindow (PinWindowLayout (PinWindowLayout)) import Rahm.Desktop.Layout.Pop (poppable) import Rahm.Desktop.Layout.Redescribe (Describer (..), Redescribe (..)) import Rahm.Desktop.Layout.ReinterpretMessage (DoReinterpret (..), ReinterpretMessage (..)) @@ -41,8 +42,9 @@ import XMonad.Layout.Spiral (spiral) myLayout = fullscreenFull $ - hole $ - avoidStruts myLayoutList + PinWindowLayout $ + hole $ + avoidStruts myLayoutList mySpacing = spacingRaw True (Border 5 5 5 5) True (Border 5 5 5 5) True |