xmonad-contrib-0.11: Third party extensions for xmonad

Portabilitynot portable
Stabilityunstable
Maintainerjan.vornberger@informatik.uni-oldenburg.de
Safe HaskellNone

XMonad.Hooks.WorkspaceByPos

Contents

Description

Useful in a dual-head setup: Looks at the requested geometry of new windows and moves them to the workspace of the non-focused screen if necessary.

Synopsis

Usage

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

 import XMonad.Hooks.WorkspaceByPos

 myManageHook = workspaceByPos <+> manageHook defaultConfig

 main = xmonad defaultConfig { manageHook = myManageHook }