Portability | unportable |
---|---|
Stability | unstable |
Maintainer | MATSUYAMA Tomohiro <t.matsuyama.pub@gmail.com> |
More useful tiled layout that allows you to change a width/height of window.
- data ResizableTall a = ResizableTall {}
- data MirrorResize
Usage
You can use this module with the following in your ~/.xmonad/xmonad.hs
:
import XMonad.Layout.ResizableTile
Then edit your layoutHook
by adding the ResizableTile layout:
myLayout = ResizableTall 1 (3/100) (1/2) [] ||| etc.. main = xmonad defaultConfig { layoutHook = myLayout }
For more detailed instructions on editing the layoutHook see:
You may also want to add the following key bindings:
, ((modm, xK_a), sendMessage MirrorShrink) , ((modm, xK_z), sendMessage MirrorExpand)
For detailed instruction on editing the key binding see:
data ResizableTall a Source
ResizableTall | |
|
LayoutClass ResizableTall a | |
Read (ResizableTall a) | |
Show (ResizableTall a) |