xmonad-contrib-0.18.0.9: Community-maintained extensions for xmonad
Copyright(c) 2009 Ilya Portnov
LicenseBSD3-style (see LICENSE)
MaintainerIlya Portnov <portnov84@rambler.ru>
Stabilityunstable
Portabilityunportable
Safe HaskellSafe-Inferred
LanguageHaskell2010

XMonad.Layout.OneBig

Contents

Description

Provides layout named OneBig. It places one (master) window at top left corner of screen, and other (slave) windows at top

Synopsis

Usage

This module defines layout named OneBig. It places one (master) window at top left, and other (slave) windows at right and at bottom of master. It tries to give equal space for each slave window.

You can use this module by adding following in your xmonad.hs:

import XMonad.Layout.OneBig

Then add layouts to your layoutHook:

myLayoutHook = OneBig (3/4) (3/4) ||| ...

In this example, master window will occupy 3/4 of screen width and 3/4 of screen height.

data OneBig a Source #

Data type for layout

Constructors

OneBig Float Float 

Instances

Instances details
LayoutClass OneBig a Source # 
Instance details

Defined in XMonad.Layout.OneBig

Read (OneBig a) Source # 
Instance details

Defined in XMonad.Layout.OneBig

Show (OneBig a) Source # 
Instance details

Defined in XMonad.Layout.OneBig

Methods

showsPrec :: Int -> OneBig a -> ShowS #

show :: OneBig a -> String #

showList :: [OneBig a] -> ShowS #