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

XMonad.Layout.AutoMaster

Contents

Description

Provides layout modifier AutoMaster. It separates screen in two parts - master and slave. Size of slave area automatically changes depending on number of slave windows.

Synopsis

Usage

This module defines layout modifier named autoMaster. It separates screen in two parts - master and slave. Master windows are arranged in one row, in slave area underlying layout is run. Size of slave area automatically increases when number of slave windows is increasing.

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

import XMonad.Layout.AutoMaster

Then add layouts to your layoutHook:

myLayoutHook = autoMaster 1 (1/100) Grid ||| ...

In this example, master area by default contains 1 window (you can change this number in runtime with usual IncMasterN message), changing slave area size with 1100 on each ShrinkExpand message.

autoMaster :: LayoutClass l a => Int -> Float -> l a -> ModifiedLayout AutoMaster l a Source #

User interface function

data AutoMaster a Source #

Data type for layout modifier

Instances

Instances details
Eq w => LayoutModifier AutoMaster w Source # 
Instance details

Defined in XMonad.Layout.AutoMaster

Read (AutoMaster a) Source # 
Instance details

Defined in XMonad.Layout.AutoMaster

Show (AutoMaster a) Source # 
Instance details

Defined in XMonad.Layout.AutoMaster