Gerald Klein wrote:
> Hi guys does anyone know if you can make a "floated" window always on
> top?
>
I have this near the end of my rc.lua:
---[[ Arrange signal handler.
for s = 1, screen.count() do screen[s]:add_signal("arrange", function ()
local clients = awful.client.visible(s)
local layout = awful.layout.getname(awful.layout.get(s))
for _, c in pairs(clients) do
if awful.client.floating.get(c) or layout == "floating" then
if not c.fullscreen then
-- Floaters always on top
c.above = true
end
else
c.above = false
end
end
end)
end --]]
Cheers, mih
--
'aware water' is an anagram for 'we are at war'
--
To unsubscribe, send mail to [email protected].