Erik Johnson
Erik Johnson
I've never seen this bug, and I haven't worked on this code before, but it seems like the POWER_SUPPLY_STATUS line of the uevent file would be more reliable to determine...
I don't use this module, but it seems like that formatter is only available when network traffic is detected for that interface. The documentation says that you need `psutil` to...
If you add a `logfile` argument to your `Status()` line, you'll be able to get the full context of the traceback. For example: ``` status = Status('/home/myuser/i3pystatus.log') ``` Then if...
Yeah, the temp module does import from `i3pystatus.core.color` which pulls that in. I just wanted to help him/her self-troubleshoot :smile:
@lasers `$HOME` is a shell variable, Python won't expand it. You would need to do something like: ```python import os status = Status(logfile=os.path.expanduser('~/i3pystatus.log')) ``` However, once you get logging enabled,...
@knotman90 Were you ever able to get more information? It would help if you could post how you are registering the network module as well. From the error, this seems...
Weather Underground has discontinued its API and I've rewritten the module such that it does not require an API key to use. I took a look at this API, but...
i3pystatus does not control the background color, it merely sets the ``urgent`` flag per the [i3bar input protocol](https://i3wm.org/docs/i3bar-protocol.html). From there, it appears that i3 uses the [urgent_workspace](https://i3wm.org/docs/userguide.html#_colors) color definition to...
Yeah, some drivers are better than others. The broadcom drivers are particularly bad in this respect.
Since I implemented #6033, I did this one as well in https://github.com/AntennaPod/AntennaPod/pull/6073.