xmonad-contrib-0.18.0.9: Community-maintained extensions for xmonad
Copyright(c) Luis Cabellos <zhen.sydow@gmail.com>
LicenseBSD3-style (see LICENSE)
MaintainerLuis Cabellos <zhen.sydow@gmail.com>
Stabilitystable
Portabilityportable
Safe HaskellSafe-Inferred
LanguageHaskell2010

XMonad.Layout.Cross

Contents

Description

Deprecated: Use XMonad.Layout.Circle or XMonad.Layout.ThreeColumn.ThreeColMid instead

A Cross Layout with the main window in the center.

Synopsis

Usage

You can use this module with the following in your xmonad.hs:

import XMonad.Layout.Cross

Then edit your layoutHook by adding one of the Cross layouts:

myLayout =  simpleCross ||| etc..
main = xmonad def { layoutHook = myLayout }

simpleCross :: Cross a Source #

A simple Cross Layout. It places the focused window in the center. The proportion of the screen used by the main window is 4/5.

data Cross a Source #

The Cross Layout draws the focused window in the center of the screen and part of the other windows on the sides. The Shrink and Expand messages increment the size of the main window.

The focus keybindings change the center window, while other windows cycle through the side positions. With the Cross layout only four windows are shown around the focused window, two ups and two downs, no matter how many are in the current stack. I.e. focus down cycles the window below focused into the center; focus up cycles the window above.

Constructors

Cross 

Fields

Instances

Instances details
LayoutClass Cross a Source # 
Instance details

Defined in XMonad.Layout.Cross

Read (Cross a) Source # 
Instance details

Defined in XMonad.Layout.Cross

Show (Cross a) Source # 
Instance details

Defined in XMonad.Layout.Cross

Methods

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

show :: Cross a -> String #

showList :: [Cross a] -> ShowS #