systray, dock, icon_handler some major revision

This commit is contained in:
Rene Kievits
2022-03-06 20:56:06 +01:00
parent 39179f06b7
commit dae28d55eb
29 changed files with 422 additions and 255 deletions

View File

@@ -2,6 +2,20 @@
local awful = require("awful")
local beautiful = require("beautiful")
screen.connect_signal(
"added",
function ()
awesome.restart()
end
)
screen.connect_signal(
"removed",
function ()
awesome.restart()
end
)
client.connect_signal(
"manage",
function (c)
@@ -133,4 +147,4 @@ function hover_signal (widget, bg, fg)
end
end
)
end
end