xmonad-contrib-0.18.0.9: Community-maintained extensions for xmonad
Copyright(c) Roman Cheplyaka
LicenseBSD-style (see LICENSE)
MaintainerRoman Cheplyaka <roma@ro-che.info>
Stabilityunstable
Portabilityunportable
Safe HaskellSafe-Inferred
LanguageHaskell2010

XMonad.Util.WindowProperties

Description

EDSL for specifying window properties; various utilities related to window properties.

Synopsis

EDSL for window properties

Allows to specify window properties, such as title, classname or resource, and to check them.

In contrast to ManageHook properties, these are instances of Show and Read, so they can be used in layout definitions etc. For example usage see XMonad.Layout.IM

data Property Source #

Most of the property constructors are quite self-explaining.

Constructors

Title String 
ClassName String 
Resource String 
Role String

WM_WINDOW_ROLE property

Machine String

WM_CLIENT_MACHINE property

And Property Property infixr 9 
Or Property Property infixr 8 
Not Property 
Const Bool 
Tagged String

Tagged via XMonad.Actions.TagWindows

hasProperty :: Property -> Window -> X Bool Source #

Does given window have this property?

focusedHasProperty :: Property -> X Bool Source #

Does the focused window have this property?

allWithProperty :: Property -> X [Window] Source #

Find all existing windows with specified property

Helper functions

 

getProp32 :: Atom -> Window -> X (Maybe [CLong]) Source #

Get a window property from atom

getProp32s :: String -> Window -> X (Maybe [CLong]) Source #

Get a window property from string