I use awesomewm 4.2 and I would like to keep windows from ever minimizing. I have experimented with the request::activate
, raised
, and lowered
signals and none of them fire when clients minimize themselves. Ideas?
Untested, but I would expect this to work:
client.connect_signal("property::minimized", function(c)
c.minimized = false
end)