Copyright | (c) David Roundy <droundy@darcs.net> |
---|---|
License | BSD3-style (see LICENSE) |
Maintainer | none |
Stability | unstable |
Portability | unportable |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
A layout that splits the screen into a square area and the rest of the screen. This is probably only ever useful in combination with XMonad.Layout.Combo. It sticks one window in a square region, and makes the rest of the windows live with what's left (in a full-screen sense).
Usage
You can use this module with the following in your xmonad.hs
file:
import XMonad.Layout.Square
An example layout using square together with XMonad.Layout.Combo to make the very last area square:
, combo (combo (mirror $ twoPane 0.03 0.85),1)] (twoPane 0.03 0.5) ) [(twoPane 0.03 0.2,1),(combo [(twoPane 0.03 0.8,1),(square,1)] [(tabbed,3),(tabbed,30),(tabbed,1),(tabbed,1)]
Instances
LayoutClass Square a Source # | |
Defined in XMonad.Layout.Square runLayout :: Workspace WorkspaceId (Square a) a -> Rectangle -> X ([(a, Rectangle)], Maybe (Square a)) # doLayout :: Square a -> Rectangle -> Stack a -> X ([(a, Rectangle)], Maybe (Square a)) # pureLayout :: Square a -> Rectangle -> Stack a -> [(a, Rectangle)] # emptyLayout :: Square a -> Rectangle -> X ([(a, Rectangle)], Maybe (Square a)) # handleMessage :: Square a -> SomeMessage -> X (Maybe (Square a)) # pureMessage :: Square a -> SomeMessage -> Maybe (Square a) # description :: Square a -> String # | |
Read (Square a) Source # | |
Show (Square a) Source # | |