Popup tasklist switcher for awesomewm
Go to file
Izaya aa516d5721 specify the screen properly 2022-03-04 09:56:30 +11:00
LICENSE Initial commit 2022-03-03 20:18:35 +11:00
README.md usage instructions 2022-03-03 20:26:55 +11: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 specify the screen properly 2022-03-04 09:56:30 +11: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

Usage

require the library:

local switcherpopup = require("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/"