THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#794 - Optional (multi)tag selecting OSD
User who did this - Gregor Best (farhaven)
----------
That can easily be done in the rc.lua... Simply create a floating wibox with
just a tag list and hide it. Then install a listener for property:selected
signals on tags. That handler then show the wibox and starts a timer to hide it
in a few seconds. See the following code for an example:
w = wibox({})
tl = awful.widget.taglist(1, awful.widget.taglist.filter.all, {})
w:geometry({ x = 0, y = 0, width = 250, height = 16 })
w.widgets = { tl, layout = awful.widget.layout.horizontal.leftright, height =
16 }
w.visible = false
w.screen = 1
w.ontop = true
function show ()
w.visible = true
local t = timer({ timeout = 4 })
t:add_signal("timeout", function () w.visible = false end)
t:start()
end
awful.tag.attached_add_signal(1, "property::selected", show)
----------
More information can be found at the following URL:
http://awesome.naquadah.org/bugs/index.php?do=details&task_id=794#comment2191
You are receiving this message because you have requested it from the Flyspray
bugtracking system. If you did not expect this message or don't want to
receive mails in future, you can change your notification settings at the URL
shown above.
--
To unsubscribe, send mail to [email protected].