Copyright | (c) 2007 2008 Joachim Breitner <mail@joachim-breitner.de> |
---|---|
License | BSD |
Maintainer | Joachim Breitner <mail@joachim-breitner.de> |
Stability | unstable |
Portability | unportable |
Safe Haskell | None |
Language | Haskell98 |
Makes xmonad use the EWMH hints to tell panel applications about its workspaces and the windows therein. It also allows the user to interact with xmonad by clicking on panels and window lists.
Synopsis
- ewmh :: XConfig a -> XConfig a
- ewmhDesktopsStartup :: X ()
- ewmhDesktopsLogHook :: X ()
- ewmhDesktopsLogHookCustom :: ([WindowSpace] -> [WindowSpace]) -> X ()
- ewmhDesktopsEventHook :: Event -> X All
- ewmhDesktopsEventHookCustom :: ([WindowSpace] -> [WindowSpace]) -> Event -> X All
- fullscreenEventHook :: Event -> X All
Usage
You can use this module with the following in your ~/.xmonad/xmonad.hs
:
import XMonad import XMonad.Hooks.EwmhDesktops main = xmonad $ ewmh def{ handleEventHook = handleEventHook def <+> fullscreenEventHook }
You may also be interested in docks
from XMonad.Hooks.ManageDocks.
ewmh :: XConfig a -> XConfig a Source #
Add EWMH functionality to the given config. See above for an example.
ewmhDesktopsStartup :: X () Source #
Initializes EwmhDesktops and advertises EWMH support to the X server
ewmhDesktopsLogHook :: X () Source #
Notifies pagers and window lists, such as those in the gnome-panel of the current state of workspaces and windows.
ewmhDesktopsLogHookCustom :: ([WindowSpace] -> [WindowSpace]) -> X () Source #
Generalized version of ewmhDesktopsLogHook that allows an arbitrary user-specified function to transform the workspace list (post-sorting)
ewmhDesktopsEventHook :: Event -> X All Source #
Intercepts messages from pagers and similar applications and reacts on them. Currently supports:
- _NET_CURRENT_DESKTOP (switching desktops)
- _NET_WM_DESKTOP (move windows to other desktops)
- _NET_ACTIVE_WINDOW (activate another window, changing workspace if needed)
ewmhDesktopsEventHookCustom :: ([WindowSpace] -> [WindowSpace]) -> Event -> X All Source #
Generalized version of ewmhDesktopsEventHook that allows an arbitrary user-specified function to transform the workspace list (post-sorting)