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