Hi,<div><br></div><div>I wished for a layout in which the bottom 1/10th of my screen would have a fixed few things (mostly filled with tail -f&#39;s of logs and such), while being free to use the rest of the upper 9/10 of the screen normally.</div>
<div>I was suggested I play with LayoutScreens for this.</div><div>The idea was that it would &quot;divide&quot; the screen in half -- pretend as if I had two monitors... </div><div><br></div><div>I tried it out. It&#39;s working. I&#39;m using the lines in this page exactly: <a href="http://xmonad.org/xmonad-docs/xmonad-contrib/XMonad-Layout-LayoutScreens.html">http://xmonad.org/xmonad-docs/xmonad-contrib/XMonad-Layout-LayoutScreens.html</a></div>
<div><br></div><div>i.e.:</div><div><br></div><div><meta http-equiv="content-type" content="text/html; charset=utf-8"><pre style="font-size: 13px; font-family: sans-serif; "> <span class="Apple-style-span" style="font-family: monospace; ">import XMonad.Layout.LayoutScreens</span></pre>
<meta http-equiv="content-type" content="text/html; charset=utf-8"><pre style="font-size: 13px; font-family: sans-serif; "> import XMonad.Layout.TwoPane</pre><pre style="font-size: 13px; font-family: sans-serif; ">--[....]</pre>
<pre style="font-size: 13px; font-family: sans-serif; ">   , ((modm .|. shiftMask,                 xK_space), layoutScreens 2 (TwoPane 0.5 0.5))
   , ((modm .|. controlMask .|. shiftMask, xK_space), rescreen)</pre><pre style="font-size: 13px; font-family: sans-serif; "><br></pre><pre><font class="Apple-style-span" face="sans-serif" size="3">And this very nicely gets me what I wanted -- but just with one problem. Instead of the division being vertical, it&#39;s </font><font class="Apple-style-span" size="3">horizontal</font><font class="Apple-style-span" face="sans-serif" size="3">.</font></pre>
<pre><font class="Apple-style-span" face="sans-serif" size="3">To give you a pictorial depiction, instead of it being like this:</font></pre><pre><font class="Apple-style-span" face="sans-serif" size="3">[workspace 1]</font></pre>
<pre><font class="Apple-style-span" face="sans-serif" size="3">[workspace 2],</font></pre><pre><font class="Apple-style-span" face="sans-serif" size="3">it&#39;s sort of like this: [workspace 1][workspace 2]</font></pre><pre>
<font class="Apple-style-span" face="sans-serif" size="3"><br></font></pre><pre><font class="Apple-style-span" face="sans-serif" size="3">I would appreciate any suggestions on how I can have it like the first depiction. I hope you&#39;re kind and use small words -- I&#39;m new to both Haskell and XMonad :)</font></pre>
<pre><font class="Apple-style-span" face="sans-serif" size="3"><br></font></pre><pre><font class="Apple-style-span" face="sans-serif" size="3">Thank you very much for your time,</font></pre><pre><font class="Apple-style-span" face="sans-serif" size="3">-Kyle</font></pre>
<pre><font class="Apple-style-span" face="sans-serif" size="3"><br></font></pre></div><meta http-equiv="content-type" content="text/html; charset=utf-8">