pltanton / net_widgets

Network widgets for Awesome WM
MIT License
166 stars 41 forks source link

Error by hovering over widget #21

Closed bakopyan closed 6 years ago

bakopyan commented 6 years ago

just adding the standard wifi widget to the systray causes the following error for me in wireless.lua:190:

attempt to concatenate a nil value (upvalue 'font')

could you imagine what's wrong here?

pltanton commented 6 years ago

local font = args.font or beautiful.font seems like you have no font value on beautiful, try to set font manually on widget initialization (net_widgets.wireless({...blabla..., font = "your-font-name", ...blabla...}).

bakopyan commented 6 years ago

that worked! thank you