xmonad-contrib-0.17.1.9: Community-maintained extensions for xmonad
Copyright(c) Jan Vornberger 2009
LicenseBSD3-style (see LICENSE)
Maintainerjan.vornberger@informatik.uni-oldenburg.de
Stabilityunstable
Portabilitynot portable
Safe HaskellSafe-Inferred
LanguageHaskell2010

XMonad.Hooks.CurrentWorkspaceOnTop

Contents

Description

Ensures that the windows of the current workspace are always in front of windows that are located on other visible screens. This becomes important if you use decoration and drag windows from one screen to another. Using this module, the dragged window will always be in front of other windows.

Synopsis

Usage

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

import XMonad.Hooks.CurrentWorkspaceOnTop

main = xmonad $ def {
   ...
   logHook = currentWorkspaceOnTop
   ...
 }