-
How would I make the default layout on every workspace fullscreen? I would still like to switch between horizontal and vertical layouts using the $mod + space button |
Beta Was this translation helpful? Give feedback.
Replies: 13 comments 3 replies
-
The default
where For completeness, the definition of
|
Beta Was this translation helpful? Give feedback.
-
Thanks! That worked! My final code was:
|
Beta Was this translation helpful? Give feedback.
-
Following up on this @geekosaur - how could I do this for this hook:
I tried moving |
Beta Was this translation helpful? Give feedback.
-
I don't see how that would affect keys; they're a completely separate hook. Which keys weren't working? |
Beta Was this translation helpful? Give feedback.
-
It was the
For some reason it still will not launch in full screen mode |
Beta Was this translation helpful? Give feedback.
-
It won't; |
Beta Was this translation helpful? Give feedback.
-
Got it! So to start in full do I just type Full first?
…On Sun, Jan 19, 2025 at 10:44 AM brandon s allbery kf8nh < ***@***.***> wrote:
It won't; toggleLayouts Full doesn't start toggled on, it's just a quick
way to switch to Full and back.
—
Reply to this email directly, view it on GitHub
<#356 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ARTB5TMKXTHKL5UPY5Q5CVD2LPB5PAVCNFSM6AAAAABVOZIKJ6VHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCOBYGIZDSOA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Yes. There are some other things but they're strictly hacks and in general more complicated than just putting the layouts in the order you want. If you want different orderings on some workspaces consider |
Beta Was this translation helpful? Give feedback.
-
I think I am looking for the same behavior as I had in the original
question which is just to start in fullscreen mode but having issues with
the code and syntax now that I have a more advanced layoutHook
…On Sun, Jan 19, 2025 at 11:06 AM brandon s allbery kf8nh < ***@***.***> wrote:
Yes. There are some other things but they're strictly hacks and in general
more complicated than just putting the layouts in the order you want. If
you want different orderings on some workspaces consider
XMonad.Layout.PerWorkspace
<https://hackage.haskell.org/package/xmonad-contrib-0.18.1/docs/XMonad-Layout-PerWorkspace.html>
.
—
Reply to this email directly, view it on GitHub
<#356 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ARTB5TP6SKO77KXD6MMK4JD2LPER5AVCNFSM6AAAAABVOZIKJ6VHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCOBYGI2DAOA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Thank you - I tried this but didn't have the parenthesis. Noted
…On Sun, Jan 19, 2025 at 11:40 AM brandon s allbery kf8nh < ***@***.***> wrote:
layoutHook = hiddenWindows $ noBorders $ avoidFloats $ Full ||| (spacingWithEdge 4 $ ifMax 2 (Mirror Grid) Grid)
—
Reply to this email directly, view it on GitHub
<#356 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ARTB5TPISOIYD7LP3PZ6P4D2LPIQNAVCNFSM6AAAAABVOZIKJ6VHI2
8000
DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCOBYGI2TQNA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Agreed on ChatGPT. It is not Haskell fluent
…On Sun, Jan 19, 2025 at 11:38 AM brandon s allbery kf8nh < ***@***.***> wrote:
That was what I was hinting at with my comment about more complex
solutions, but yes, the simplistic approach to it won't work and it's
mostly not worth the more complex versions that do.
Also, ChatGPT knows virtually nothing about Haskell, much less xmonad, and
its suggestions in that area are largely worthless.
—
Reply to this email directly, view it on GitHub
<#356 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ARTB5TNAYRGW2YOIBKWG7W32LPIJPAVCNFSM6AAAAABVOZIKJ6VHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCOBYGI2TONI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
The default
layoutHook
iswhere
tiled
is defined elsewhere (but you'll probably need to copy it into your config since it's not exported). You would rearrange this list soFull
is first.For completeness, the definition of
tiled
is