Near your floatapps table, put another one in, like this:

topapps = {
   "xterm" = true
}

Then in your client manage hook mabobby:

if topapps[cls] or topapps[inst] then
    c.ontop = true
end
(assuming you have inst = c.instance and cls = c.class)
This checks to see if the client's class or instance is in the table. If so,
it'll set the client to always on top.


It took me a while to find the c.ontop, when i was setting this up myself,
it's not in the client documentation *cough*
Here is the list of properties that you can set (using other tables or
whatever you want):
c.ontop
c.floating
c.sticky
(correct me if I'm wrong, I'm not at my box at the mo.)

Reply via email to