Popup tasklist switcher for awesomewm
Go to file
Izaya 219324add9 fix widget updating, make all the picturebuttons go through one function and not define their own .buttons table 2022-09-12 15:45:22 +10:00
LICENSE Initial commit 2022-03-03 20:18:35 +11:00
README.md add long-press support 2022-08-25 13:34:31 +10:00
folder-tag.svg add window labels, fix tag button layout and switch to SVG icons 2022-08-26 14:40:43 +10:00
go-next.svg add window labels, fix tag button layout and switch to SVG icons 2022-08-26 14:40:43 +10:00
go-previous.svg add window labels, fix tag button layout and switch to SVG icons 2022-08-26 14:40:43 +10:00
init.lua fix widget updating, make all the picturebuttons go through one function and not define their own .buttons table 2022-09-12 15:45:22 +10:00
tag-create.svg add window labels, fix tag button layout and switch to SVG icons 2022-08-26 14:40:43 +10:00
tag-destroy-inkscape.svg add window labels, fix tag button layout and switch to SVG icons 2022-08-26 14:40:43 +10:00
tag-destroy.svg add window labels, fix tag button layout and switch to SVG icons 2022-08-26 14:40:43 +10:00
window-close.svg add window labels, fix tag button layout and switch to SVG icons 2022-08-26 14:40:43 +10:00

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/"