Popup tasklist switcher for awesomewm
Go to file
Izaya 526dfd4c4b add long-press support 2022-08-25 13:34:31 +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
go-next.png import module 2022-03-03 20:20:32 +11:00
go-previous.png import module 2022-03-03 20:20:32 +11:00
init.lua add long-press support 2022-08-25 13:34:31 +10:00
remove.png import module 2022-03-03 20:20:32 +11:00
tag-new.png import module 2022-03-03 20:20:32 +11:00
window-close.png import module 2022-03-03 20:20:32 +11: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/"