How can I only use app icons in task list in awesome wm ver 3.5?

In Awesome <3.5, I did it like this:

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, which no longer works like in 3.5, there is no such function - awful.widget.tasklist.label.currenttags () and the new awful.widget.tasklist.filter.currenttags () function returns true or false, so this not a real replacement.

+3


source to share


1 answer


Do you mean "Remove badges" by putting the code in the question in the rc.lua file?

As of version 3.5.1, task icons can be removed by adding

theme.tasklist_disable_icon = true

      



to your theme .lua.

Source: http://awesome.naquadah.org/wiki/Remove_icons

0


source







All Articles