I am trying out awesome at the moment coming from KDE/MATE since many years and I really like it a lot. There's really only one thing that I'm missing from my previous workflows.
Occasionally I'm working with applications that have a lot of floating windows. What I found tremendously helpful in floating WMs was the ability to roll up or shade a window, basically only keeping the titlebar of the application but hiding its window contents.
Is this possible in awesome? Alternatively are there other options like tabbing windows (like in i3) or do you have other suggestions?
Thanks a lot in advance!
Theoretically yes, but practically I do not know about anyone who implemented the necessary magic yet to make this work properly. A semi-good first approximation might be to resize the window to height 1.
Untested sketch:
The above function would then be bound to some key similar to how Mod+Ctrl+Space is bound to
awful.client.floating.togglein the default config.Here is a variant which might work on AwesomeWM v3.5:
Also, if you want to get the height of the titlebar, you should be able to use
local _, height = c:titlebar_top(). I'm not sure if this also works in AwesomeWM v3.5.