Popup tasklist switcher for awesomewm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Izaya 219324add9 fix widget updating, make all the picturebuttons go through one function and not define their own .buttons table 1 year ago
LICENSE Initial commit 2 years ago
README.md add long-press support 1 year ago
folder-tag.svg add window labels, fix tag button layout and switch to SVG icons 1 year ago
go-next.svg add window labels, fix tag button layout and switch to SVG icons 1 year ago
go-previous.svg add window labels, fix tag button layout and switch to SVG icons 1 year ago
init.lua fix widget updating, make all the picturebuttons go through one function and not define their own .buttons table 1 year ago
tag-create.svg add window labels, fix tag button layout and switch to SVG icons 1 year ago
tag-destroy-inkscape.svg add window labels, fix tag button layout and switch to SVG icons 1 year ago
tag-destroy.svg add window labels, fix tag button layout and switch to SVG icons 1 year ago
window-close.svg add window labels, fix tag button layout and switch to SVG icons 1 year ago

README.md

popupswitcher

Popup tasklist switcher for awesomewm. Requires awesome-longpress

Usage

require the library:

local switcherpopup = require("awesome-switcherpopup")

Add one for each screen:

  local tasklist = switcherpopup.new(s)

Add some buttons to show and hide it:

  switcher_button:buttons(gears.table.join(
    switcher_button:buttons(),
    awful.button({}, 1, nil, function()
      tasklist:toggle()
    end)
  ))

Configuration

switcherpopup.iconSize = 128,
switcherpopup.systraySize = 64,
switcherpopup.buttonSize = 96,
switcherpopup.spacing = 5,
switcherpopup.defaultLayout = awful.layout.suit.max,
switcherpopup.iconPath = gears.filesystem.get_configuration_dir() .. "/switcherpopup/"