| Copyright | (c) Lukas Mai | 
|---|---|
| License | BSD3-style (see LICENSE) | 
| Maintainer | <l.mai@web.de> | 
| Stability | unstable | 
| Portability | unportable | 
| Safe Haskell | None | 
| Language | Haskell98 | 
XMonad.Actions.FlexibleResize
Contents
Description
Resize floating windows from any corner.
- mouseResizeWindow :: Window -> X ()
- mouseResizeEdgeWindow :: Rational -> Window -> X ()
Usage
To use, first import this module into your ~/.xmonad/xmonad.hs file:
import qualified XMonad.Actions.FlexibleResize as Flex
Then add an appropriate mouse binding:
, ((modm, button3), (\w -> focus w >> Flex.mouseResizeWindow w))
For detailed instructions on editing your mouse bindings, see XMonad.Doc.Extending.
Resize a floating window from whichever corner the mouse is closest to.