Hi,
import XMonad.Layout.LayoutScreens
import XMonad.Layout.TwoPane
--[....]
, ((modm .|. shiftMask, xK_space), layoutScreens 2 (TwoPane 0.5 0.5)) , ((modm .|. controlMask .|. shiftMask, xK_space), rescreen)
And this very nicely gets me what I wanted -- but just with one problem. Instead of the division being vertical, it's horizontal.
To give you a pictorial depiction, instead of it being like this:
[workspace 1]
[workspace 2],
it's sort of like this: [workspace 1][workspace 2]
I would appreciate any suggestions on how I can have it like the first depiction. I hope you're kind and use small words -- I'm new to both Haskell and XMonad :)
Thank you very much for your time,
-Kyle