Awesome-WM restrict client size

awesome-wm

Is it possible in Awesome-WM to restrict a client window, namely my IM contact list, to a specific size?

Best Answer

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
},
-- [...]
Related Question