xmonad-contrib-0.11.4: Third party extensions for xmonad

Copyright(c) 2007 Andrea Rossato
LicenseBSD-style (see xmonad/LICENSE)
Maintainerandrea.rossato@unibz.it
Stabilityunstable
Portabilityunportable
Safe HaskellNone
LanguageHaskell98

XMonad.Actions.MouseResize

Contents

Description

A layout modifier to resize windows with the mouse by grabbing the window's lower right corner.

This module must be used together with XMonad.Layout.WindowArranger.

Synopsis

Usage:

Usually this module is used to create layouts, but you can also use it to resize windows in any layout, together with the XMonad.Layout.WindowArranger. For usage example see XMonad.Layout.SimpleFloat or XMonad.Layout.DecorationMadness.

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

import XMonad.Actions.MouseResize
import XMonad.Layout.WindowArranger

Then edit your layoutHook by modifying a given layout:

myLayout = mouseResize $ windowArrange $ layoutHook defaultConfig

and then:

main = xmonad defaultConfig { layoutHook = myLayout }

For more detailed instructions on editing the layoutHook see:

XMonad.Doc.Extending

data MouseResize a Source

Constructors

MR [((a, Rectangle), Maybe a)]