Awesome
Treesome
Treesome is binary tree-based tiling layout for Awesome 3.4 and latter. Similarly to tmux, it can split focused window either vertically or horizontally.
The project is still in the development. Feel free to fork/contribute!
Use
-
Clone repository to your awesome directory
git clone http://github.com/RobSis/treesome.git ~/.config/awesome/treesome
-
Add this line to your rc.lua below other require calls.
local treesome = require("treesome")
-
And finally add the layout
treesome
to your layout table.
local layouts = {
...
treesome
}
- Restart and you're done.
Optional steps
- By default, direction of split is decided based on the dimensions of focused
client. If you want you to force the direction of the split, bind keys to
treesome.vertical
andtreesome.horizontal
functions. For example:
awful.key({ modkey }, "v", treesome.vertical),
awful.key({ modkey }, "h", treesome.horizontal)