ThreeCol - Update docs to match reality

This commit is contained in:
Anders Engstrom 2009-05-03 19:07:55 +00:00
parent 99e839228e
commit a5e11a14b6

View File

@ -38,17 +38,18 @@ import Control.Monad
-- --
-- Then edit your @layoutHook@ by adding the ThreeCol layout: -- Then edit your @layoutHook@ by adding the ThreeCol layout:
-- --
-- > myLayouts = ThreeCol 1 (3/100) (1/2) ||| etc.. -- > myLayouts = ThreeCol 1 (3/100) (1/2) ||| ThreeColMid 1 (3/100) (1/2) ||| etc..
-- > main = xmonad defaultConfig { layoutHook = myLayouts } -- > main = xmonad defaultConfig { layoutHook = myLayouts }
-- --
-- If the first argument is true, the main window is placed in the center -- The first argument specifies hom many windows initially appear in the main
-- column. The second argument specifies hom many windows initially appear in -- window. The second argument argument specifies the amount to resize while
-- the main window. The third argument argument specifies the amount to resize -- resizing and the third argument specifies the initial size of the columns.
-- while resizing and the fourth argument specifies the initial size of the -- A positive size designates the fraction of the screen that the main window
-- columns. A positive size designates the fraction of the screen that the main -- should occupy, but if the size is negative the absolute value designates the
-- window should occupy, but if the size is negative the absolute value -- fraction a slave column should occupy. If both slave columns are visible,
-- designates the fraction a slave column should occupy. If both slave columns -- they always occupy the same amount of space.
-- are visible, they always occupy the same amount of space. --
-- The ThreeColMid variant places the main window between the slave columns.
-- --
-- For more detailed instructions on editing the layoutHook see: -- For more detailed instructions on editing the layoutHook see:
-- --