[xmonad] Remove outside borders from windows
Zach Hirsch
zhirsch at umich.edu
Sat Jun 16 06:07:45 CEST 2012
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.
More information about the xmonad
mailing list