Copyright | (c) Lukas Mai |
---|---|
License | BSD3-style (see LICENSE) |
Maintainer | <l.mai@web.de> |
Stability | unstable |
Portability | unportable |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Resize floating windows from any corner.
Synopsis
- mouseResizeWindow :: Window -> X ()
- mouseResizeEdgeWindow :: Rational -> Window -> X ()
Usage
To use, first import this module into your 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.