taffybar-2.1.0: A desktop bar similar to xmobar, but with more GUI

Copyright(c) José A. Romero L.
LicenseBSD3-style (see LICENSE)
MaintainerJosé A. Romero L. <escherdragon@gmail.com>
Stabilityunstable
Portabilityunportable
Safe HaskellNone
LanguageHaskell2010

System.Taffybar.Information.EWMHDesktopInfo

Description

Functions to access data provided by the X11 desktop via EWHM hints. This module requires that the EwmhDesktops hook from the XMonadContrib project be installed in your ~/.xmonad/xmonad.hs configuration:

import XMonad
import XMonad.Hooks.EwmhDesktops (ewmh)

main = xmonad $ ewmh $ ...

Synopsis

Documentation

type X11Window = Window Source #

type X11WindowHandle = ((WorkspaceIdx, String, String), X11Window) Source #

Convenience alias for a pair of the form (props, window), where props is a tuple of the form (workspace index, window title, window class), and window is the internal ID of an open window.

data EWMHIcon Source #

Constructors

EWMHIcon 

Fields

type EWMHIconData = (ForeignPtr PixelsWordType, Int) Source #

withDefaultCtx :: X11Property a -> IO a Source #

Put the current display and root window objects inside a Reader transformer for further computation.

isWindowUrgent :: X11Window -> X11Property Bool Source #

Determine whether the "urgent" flag is set in the WM_HINTS of the given window.

getCurrentWorkspace :: X11Property WorkspaceIdx Source #

Retrieve the index of the current workspace in the desktop, starting from 0.

getVisibleWorkspaces :: X11Property [WorkspaceIdx] Source #

Retrieve the indexes of all currently visible workspaces with the active workspace at the head of the list.

getWorkspaceNames :: X11Property [(WorkspaceIdx, String)] Source #

Return a list with the names of all the workspaces currently available.

switchToWorkspace :: WorkspaceIdx -> X11Property () Source #

Ask the window manager to switch to the workspace with the given index, starting from 0.

switchOneWorkspace :: Bool -> Int -> X11Property () Source #

Move one workspace up or down from the current workspace

withEWMHIcons :: EWMHIconData -> ([EWMHIcon] -> IO a) -> IO a Source #

Operate on the data contained in EWMHIconData in the easier to interact with format offered by EWMHIcon. This function is much like withForeignPtr in that the EWMHIcon values that are provided to the callable argument should not be kept around in any way, because it can not be guaranteed that the finalizer for the memory to which those icon objects point will not be executed, after the call to withEWMHIcons completes.

getWindowTitle :: X11Window -> X11Property String Source #

Get the title of the given X11 window.

getWindowClass :: X11Window -> X11Property String Source #

Get the class of the given X11 window.

getWindowIconsData :: X11Window -> X11Property (Maybe EWMHIconData) Source #

Get EWMHIconData for the given X11Window

getActiveWindowTitle :: X11Property String Source #

Get the title of the currently focused window.

getWindows :: X11Property [X11Window] Source #

Return a list of all windows

getWindowHandles :: X11Property [X11WindowHandle] Source #

Return a list of X11 window handles, one for each window open. Refer to the documentation of X11WindowHandle for details on the structure returned.

getWorkspace :: X11Window -> X11Property WorkspaceIdx Source #

Return the index (starting from 0) of the workspace on which the given window is being displayed.

focusWindow :: X11Window -> X11Property () Source #

Ask the window manager to give focus to the given window.