user7216686
user7216686

Reputation:

awesomewm - size of tasklist icons

how to change the icon size of the tasklist? I am working with a non-modified, just installed awesome wm build and cant seem to figure this one out.

I tried

s.mytasklist = awful.widget.tasklist {
        screen  = s,
        filter  = awful.widget.tasklist.filter.currenttags,
        buttons = tasklist_buttons,
        style = {
                icon_size = 10,

from https://awesomewm.org/apidoc/widgets/awful.widget.tasklist.html

and this Awesome wm setting size for the tasklist item

both solutions wont work.

thanks

Upvotes: 0

Views: 2276

Answers (1)

Emmanuel Lepage Vallee
Emmanuel Lepage Vallee

Reputation: 2762

In AwesomeWM <= 4.2, you cannot. In 4.3 and newer, you need to provide a widget_template. The 2 main way to lock the size are the constraint container or the forced height property.

Upvotes: 1

Related Questions