Search code examples
awesome-wm

How can I forbid minimization in AwesomeWM 4.2?


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?


Solution

  • Untested, but I would expect this to work:

    client.connect_signal("property::minimized", function(c)
        c.minimized = false
    end)