i am trying to remove the titlebar in Awesome wm 4.3 when the layout changes (in my case) to "max.fullscreen":
client.connect_signal("focus", function(c)
if awful.layout.getname() == "fullscreen" then
awful.titlebar.hide(c)
end
end)
I have tried connecting several signals (focus, manage, list, screen::change) to hide the titlebar, but the currently focused window keeps the titlebar on a layout change.
Every other window I change after that has no titlbar.
Is there any other way (or signal) to modify the currently focused window (properties) on a layout-change?