Skip to content

jcrd/awesome-dovetail

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

awesome-dovetail

awesome-dovetail is a layout for Awesome featuring two visible tiled clients. It is similar to the deck layout in other dynamic window managers.

Installation

$ git clone https://github.com/jcrd/awesome-dovetail.git
$ cd awesome-dovetail
$ luarocks make --local rockspec/awesome-dovetail-devel-1.rockspec

Usage

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.

License

This project is licensed under the MIT License (see LICENSE).