xmonad-contrib-0.18.0.9: Community-maintained extensions for xmonad
Copyright(c) 2023 Mahdi Seyedan
LicenseBSD-style (see xmonad/LICENSE)
MaintainerMahdi Seyedan. <mahdisn78@gmail.com>
Stabilityunstable
Portabilityunportable
Safe HaskellSafe-Inferred
LanguageHaskell2010

XMonad.Layout.CenterMainFluid

Contents

Description

A three column layout with main column in the center and two stack columns surrounding it. There will be always a pane in the center column and unoccupied spaces on the sides are reserved. It's best suited for ultrawide montiors, where a single stretched window might be annoying.

Synopsis

Usage

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

import XMonad.Layout.CenterMainFluid

Then edit your layoutHook by adding the CenterMainFluid layout:

myLayoutHook = CenterMainFluid 1 (3/100) (70/100) ||| ...
main = xmonad def { layoutHook = myLayout }

The first argument specifies how many windows initially appear in the center column. The second argument specifies the amount to resize while resizing and the third argument specifies the initial size of the center column.

For more detailed instructions on editing the layoutHook see the tutorial and XMonad.Doc.Extending.

data CenterMainFluid a Source #

Arguments are nmaster, delta, fraction. Supports Shrink, Expand and IncMasterN

Constructors

CenterMainFluid 

Fields

  • cmfNMaster :: !Int

    The default number of windows in the center pane (default: 1)

  • cmfRatioIncrement :: !Rational

    Percent of screen to increment by when resizing panes (default: 3/100)

  • cmfRatio :: !Rational

    Default proportion of screen occupied by the center pane (default: 70/100)