Remove icons
From awesome
[edit] Removing icons from the tasklist
You will need to edit the following section in rc.lua.
-- Create a tasklist widget
mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
To remove icons from the tasklist:
-- Create a tasklist widget
mytasklist_template = { { item = "title", bg_resize = true}, layout = layout.horizontal.leftright }
mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons, nil, mytasklist_template)
To remove icons from the tasklist and show only current client:
-- Create a tasklist widget
mytasklist_template = { { item = "title", bg_resize = true}, layout = layout.horizontal.leftright }
mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.focused, mytasklist.buttons, nil, mytasklist_template)

