xmonad-contrib-bluetilebranch-0.8.1: Third party extensions for xmonadSource codeContentsIndex
XMonad.Layout.CenteredMaster
Portabilityunportable
Stabilityunstable
MaintainerIlya Portnov <portnov84@rambler.ru>
Contents
Usage
Description
Two layout modifiers. centerMaster places master window at center, on top of all other windows, which are managed by base layout. topRightMaster is similar, but places master window in top right corner instead of center.
Synopsis
centerMaster :: LayoutClass l a => l a -> ModifiedLayout CenteredMaster l a
topRightMaster :: LayoutClass l a => l a -> ModifiedLayout TopRightMaster l a
Usage

This module defines two new layout modifiers: centerMaster and topRightMaster. centerMaster places master window at center of screen, on top of others. All other windows in background are managed by base layout. topRightMaster is like centerMaster, but places master window in top right corner instead of center.

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

 import XMonad.Layout.CenteredMaster

Then add layouts to your layoutHook:

 myLayoutHook = centerMaster Grid ||| ...
centerMaster :: LayoutClass l a => l a -> ModifiedLayout CenteredMaster l aSource
Modifier that puts master window in center, other windows in background are managed by given layout
topRightMaster :: LayoutClass l a => l a -> ModifiedLayout TopRightMaster l aSource
Modifier that puts master window in top right corner, other windows in background are managed by given layout
Produced by Haddock version 2.4.2