xmonad-contrib
Copyright(c) 2007 Andrea Rossato 2023 Ilya Portnov
LicenseBSD-style (see xmonad/LICENSE)
Maintainerportnov84@rambler.ru
Stabilityunstable
Portabilityunportable
Safe HaskellNone
LanguageHaskell2010

XMonad.Layout.DecorationEx.DwmGeometry

Contents

Description

This defines window decorations which are shown as a bar of fixed width on top of window.

Synopsis

Usage:

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

import XMonad.Layout.DecorationEx.DwmStyle

Then edit your layoutHook by adding the DwmStyle decoration to your layout:

myL = dwmStyleDeco shrinkText (layoutHook def)
main = xmonad def { layoutHook = myL }

For more detailed instructions on editing the layoutHook see:

XMonad.Doc.Extending

data DwmGeometry a Source #

Decoration geometry data type

Constructors

DwmGeometry 

Fields

  • dwmShowForFocused :: !Bool

    Whether to show decorations on focused windows

  • dwmHorizontalPosition :: !Rational

    Horizontal position of decoration rectangle. 0 means place it at left corner, 1 - place it at right corner, 1%2 - place it at center.

  • dwmDecoHeight :: !Dimension

    Height of decoration rectangle

  • dwmDecoWidth :: !Dimension

    Width of decoration rectangle

Instances

Instances details
DecorationGeometry DwmGeometry Window Source # 
Instance details

Defined in XMonad.Layout.DecorationEx.DwmGeometry

Methods

describeGeometry :: DwmGeometry Window -> String Source #

shrinkWindow :: DwmGeometry Window -> Rectangle -> Rectangle -> Rectangle Source #

pureDecoration :: DwmGeometry Window -> Rectangle -> Stack Window -> [(Window, Rectangle)] -> (Window, Rectangle) -> Maybe Rectangle Source #

decorateWindow :: DwmGeometry Window -> Rectangle -> Stack Window -> [(Window, Rectangle)] -> (Window, Rectangle) -> X (Maybe Rectangle) Source #

Default (DwmGeometry a) Source # 
Instance details

Defined in XMonad.Layout.DecorationEx.DwmGeometry

Methods

def :: DwmGeometry a #

Read (DwmGeometry a) Source # 
Instance details

Defined in XMonad.Layout.DecorationEx.DwmGeometry

Methods

readsPrec :: Int -> ReadS (DwmGeometry a)

readList :: ReadS [DwmGeometry a]

readPrec :: ReadPrec (DwmGeometry a)

readListPrec :: ReadPrec [DwmGeometry a]

Show (DwmGeometry a) Source # 
Instance details

Defined in XMonad.Layout.DecorationEx.DwmGeometry

Methods

showsPrec :: Int -> DwmGeometry a -> ShowS

show :: DwmGeometry a -> String

showList :: [DwmGeometry a] -> ShowS

dwmStyleDeco Source #

Arguments

:: Shrinker shrinker 
=> shrinker

Strings shrinker, for example shrinkText

-> ThemeEx StandardWidget

Decoration theme (font, colors, widgets, etc)

-> l Window

Layout to be decorated

-> ModifiedLayout (DecorationEx TextDecoration StandardWidget DwmGeometry shrinker) l Window 

Add a decoration to window layout. Widgets are indicated with text fragments using TextDecoration; decoration placement is similar to DWM.

dwmStyleDecoEx Source #

Arguments

:: Shrinker shrinker 
=> shrinker

Strings shrinker, for example shrinkText

-> DwmGeometry Window 
-> ThemeEx StandardWidget

Decoration theme (font, colors, widgets, etc)

-> l Window

Layout to be decorated

-> ModifiedLayout (DecorationEx TextDecoration StandardWidget DwmGeometry shrinker) l Window 

Add a decoration to window layout. Widgets are indicated with text fragments using TextDecoration; decoration placement can be adjusted.