awesome-dovetail is a layout for Awesome featuring two visible tiled clients. It is similar to the deck layout in other dynamic window managers.
$ git clone https://github.com/jcrd/awesome-dovetail.git
$ cd awesome-dovetail
$ luarocks make --local rockspec/awesome-dovetail-devel-1.rockspec
Require the library:
local dovetail = require("awesome-dovetail")
Add it to your layouts:
awful.layout.layouts = {
dovetail.layout.right,
}
Or initialize your tags with it:
awful.tag(
{"1", "2", "3"},
s,
dovetail.layout.top,
)
Or create a new tag using it:
awful.tag.add("dovetail", {
layout = dovetail.layout.left,
})
See the API documentation for descriptions of all functions.
This project is licensed under the MIT License (see LICENSE).