Is it possible in Awesome-WM to restrict a client window, namely my IM contact list, to a specific size?
Asked
Active
Viewed 3,975 times
2 Answers
8
you need to make the window floating, so it is ignogrd in the tiling layouts. Adding this to the suggestion above:
-- [...]
{
rule = { class = "your-app-class-here" },
properties = { floating = true },
callback = function( c )
c:geometry( { width = 200 , height = 800 } )
end
},
-- [...]
mavu
- 171
1
Add a rule in your rc.lua in the table awful.rules.rules, for example:
-- [...]
{
rule = { class = "your-app-class-here" },
callback = function( c )
c:geometry( { width = 200 , height = 800 } )
end
},
-- [...]
cYrus
- 22,335