lasers
lasers
No problem. I recently added a new exciting commit. My old bluetooth mouse is really flakey. :(
>If there is something wrong with the adapter, the text just says: "bluetooth". It would be nice if a user can define that for instance a greyed out bluetooth icon...
@ultrabug Bluetooth issue technically unrelated to py3status. **WDYWTD?** 1) Close this? 2) Merge `newmodule-bluetooth`? i) 20+ placeholders. ii) Includes adapters. iii) No more hardcoded `color`. iv) Code looks more clean.
I got `ImportError(cannot import name 'Color')` too. Pip installing `colour` works okay. >also regarding logging, im unsure if it is actually a problem... I got nothing with `status = Status(logfile='$HOME/i3pystatus.log')`...
Logging works fine. I was expecting real-time logging. Sorry. :sob: @eraserpencil See if your `colour` are installed via `pip` (Python2) or `pip3`. (Python3). We like `pip3`.
@terminalmage I vaguely remember getting this to work with `pip3`. My logging statement is unrelated.
Can't reproduce this. @crocket Is it still happening for you? If not, you should close this.
I'm not familiar with i3pystatus, but https://github.com/lasers/i3pystatus/tree/alsa does what you want ```python status.register("alsa") status.register("alsa", mixer="Capture") ``` Maybe someone else can take over this branch and clean up things?
>I've look at them and they seem quite self explaining... I agree. I tried this and got three colors working okay on `mpd`. Can we close this issue?
Hi. I know nothing, but this seems to work okay. ```diff diff --git a/i3pystatus/core/io.py b/i3pystatus/core/io.py index 7ca6019..0b43bd0 100644 --- a/i3pystatus/core/io.py +++ b/i3pystatus/core/io.py @@ -171,9 +171,9 @@ class StandaloneIO(IOHandler): return self.stopped...