Copyright | (c) Sam Tay <sam.chong.tay@gmail.com> |
---|---|
License | BSD3-style (see LICENSE) |
Maintainer | ? |
Stability | unstable |
Portability | unportable |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
A layout similar to tall but with three columns. With 2560x1600 pixels this layout can be used for a huge main window and up to six reasonable sized resizable stack windows.
Synopsis
- data ResizableThreeCol a
- = ResizableThreeColMid {
- threeColNMaster :: !Int
- threeColDelta :: !Rational
- threeColFrac :: !Rational
- threeColSlaves :: [Rational]
- | ResizableThreeCol {
- threeColNMaster :: !Int
- threeColDelta :: !Rational
- threeColFrac :: !Rational
- threeColSlaves :: [Rational]
- = ResizableThreeColMid {
- data MirrorResize
Usage
You can use this module with the following in your xmonad.hs
:
import XMonad.Layout.ResizableThreeColumns
Then edit your layoutHook
by adding the ResizableThreeCol layout:
myLayout = ResizableThreeCol 1 (3/100) (1/2) [] ||| ResizableThreeColMid 1 (3/100) (1/2) [] ||| etc.. main = xmonad def { layoutHook = myLayout }
The first argument specifies how many windows initially appear in the main window. The second argument argument specifies the amount to resize while resizing and the third argument specifies the initial size of the columns. A positive size designates the fraction of the screen that the main window should occupy, but if the size is negative the absolute value designates the fraction a stack column should occupy. If both stack columns are visible, they always occupy the same amount of space.
You may also want to add the following key bindings:
, ((modm, xK_a), sendMessage MirrorShrink) , ((modm, xK_z), sendMessage MirrorExpand)
The ResizableThreeColMid variant places the main window between the stack columns.
For more detailed instructions on editing the layoutHook see the tutorial and XMonad.Doc.Extending.
data ResizableThreeCol a Source #
Arguments are nmaster, delta, fraction
ResizableThreeColMid | |
| |
ResizableThreeCol | |
|
Instances
data MirrorResize Source #
Instances
Message MirrorResize Source # | |
Defined in XMonad.Layout.ResizableTile |