
16 Jun
2012
16 Jun
'12
12:07 a.m.
Oh, cool! This xmonad.hs works for me without any trouble, after using it for 30 minutes or so: import XMonad import XMonad.Layout.NoBorders import XMonad.Layout.ResizeScreen noOutsideBorders = resizeHorizontal n . resizeVertical n . resizeHorizontalRight n . resizeVerticalBottom n where n = -1 myLayoutHook = tiled ||| Mirror tiled ||| full where tiled = noOutsideBorders $ Tall 1 (1/2) (3/100) full = noBorders Full main = xmonad defaultConfig { layoutHook = myLayoutHook } Thanks, -Zach P.S. Gmane's online post interface is really ... interesting.