r/awesomewm • u/AxolotlGuyy_ • 18d ago
Awesome Git How do I make a specific application always float?
What I wanted to do is making it so that windows with a specific title always float independently on the layout, but I couldn't find a way of doing that, is it possible?
5
Upvotes
2
u/aire-one 18d ago edited 18d ago
Yes, it is possible using the
ruledlibrary, see: https://awesomewm.org/apidoc/declarative_rules/ruled.client.htmlThe default
awesomerc.luahave some examples in the corresponding section https://github.com/awesomeWM/awesome/blob/master/awesomerc.lua#L464-L520. This section is part of the doc https://awesomewm.org/apidoc/documentation/05-awesomerc.md.html#RulesYou'll want to play with something based on the
id = "floating"rule example.EDIT: Be aware that some applications sets their client's title "later" which make a rule based solely on this property possibly flaky since rules are evaluated at the client startup.