I would like to make all floating clients ontop by default, not only
gimp. IsN't there a generic solution for this?
I didn't test it, but I think that something like this should work:
awful.rules.rules = {
{ rule = { floating = true }, properties = { ontop = true } },
}
but the client should be set to floating before.
Maybe you could set it ontop at the same time that you set it to floating:
awful.rules.rules = {
{ rule = { class = "Gimp" }, properties = { floating = true, ontop
= true } },
}
--
Juanma Sánchez
--
To unsubscribe, send mail to [email protected].