4

In Awesome <3.5 I did it that way:

mytasklist[s] = awful.widget.tasklist(function(c)
  local task = { awful.widget.tasklist.label.currenttags(c, s) }
  return '', task[2], task[3], task[4]
end, mytasklist.buttons)

But in 3.5 that doesn't work anymore as in 3.5 there is no such function - awful.widget.tasklist.label.currenttags() and new function awful.widget.tasklist.filter.currenttags() returns just true or false so its not the real replacement.

Andrey
  • 331
  • 2
  • 10

1 Answers1

-1

You mean Remove icons by putting the code in the question in the rc.lua file ?

As of v3.5.1, tasklist icons can be removed by adding

theme.tasklist_disable_icon = true

to your theme.lua.

Docs: https://awesomewm.org/doc/api/classes/awful.widget.tasklist.html#beautiful.tasklist_disable_icon

user123
  • 170
  • 1
  • 9
Vrashabh Irde
  • 14,129
  • 6
  • 51
  • 103