dots/.config/awesome/signals/screen.lua
delta f42a3a2cc9 major update of awesome config
add new icons, switch over to using stylesheets instead of gears.color.recolor_image, add a music widget to the panel, optimize services in common.lua, fix the application lense filtering and increase the update rate of services in common.lua

Signed-off-by: delta <darkussdelta@gmail.com>
2023-05-21 10:12:46 +02:00

12 lines
305 B
Lua

local awful = require "awful"
local cfg = require "misc.cfg"
local gtable = require "gears.table"
screen.connect_signal("request::desktop_decoration", function(s)
for i, tag in ipairs(cfg.tags) do
awful.tag.add(tostring(i), gtable.crush({
screen = s
}, tag))
end
end)