Actionless Loveless

Results 865 comments of Actionless Loveless

can this be closed now or after you'll move it to hierarchy?

this would require manual merging because of codecov

https://github.com/awesomeWM/awesome/pull/2952 merged @erik-f thanks for looking into this!

comment out the shortcut in AwesomeWM config and check with `xev` - is it still binded to something or not anymore

> Transparency enabled: yes try running awesome with --no-argb flag or with compositor

see also: https://github.com/awesomeWM/awesome/pull/3791

```lua callback = function(_, _, value) my_graph:add_value(value) my_label.text = value .. 'mB/s' my_progress.value = value end ``` wouldn't it make luacheck like really crazy? or that's just a pseudo-code example...

i would prefer smth like: ```lua callback = function(_, _, widgets, value) widgets.my_graph:add_value(value) widgets.my_label.text = value .. 'mB/s' widgets.my_progress.value = value end ```

not by the price of disabling linter - it's extremely important in my coding environment i can bet all/most of the tools you're referencing have implemented linting extensions which are...

> We could ship a luacheck wrapper that would for sure resolve my concern because: ``` function() -- luacheck: globals myy_graph my_label my_progress print(myy_graph) end ``` (`my_graph` is not best...