> Is it possible to remove the icon of an application from the tasklist? For
> example the firefox globe: I'd like to have just the plain text in the
> tasklist.
I do it by creating the tasklist widget like this:
mytasklist[s] = awful.widget.tasklist(
function(c)
local text, bg, status_image, icon =
awful.widget.tasklist.label.currenttags(c, s)
if not config.tasklist_noicons then
return text, bg, status_image, icon
else
return text, bg, status_image
end
end,
mytasklist.buttons)
As you can see, in this solution, if the variable
config.tasklist_noicons is true then there will be no icons. You can
of course get rid of the 'if' statement and do without such variable.
hope this helps,
koniu
--
To unsubscribe, send mail to [email protected].