Václav Kubernát
Václav Kubernát
The `qt5-opcua` is missing the `upstream` field, because the json output doesn't have that field for that particular package, but I guess that can be easily fixable by either filtering...
>Just one thing. This prints json per line (package), not a list of JSON objects. You can filter in this script or via py3status formatter. Yep, I'm aware of that...
Also, for my specific usecase, I could just have an "external_script_lines" module, and it would do the job for me. A flag could be added to `external_script` to interpret lines...
>I don't think a flag is needed for external_script... Just that external_script should be able to deal with multi-line output... format = "{format_line}" and format_line... stuff. Most users would be...
That would definitely help me remove the need to format stuff myself through HTML. I would just need the inidividual `[...]` to be clickable. Or is that already the case?...
As far as I understand, I have these options: 1) write my own py3status module, then I can write whatever functionality I want 2) improve `external_script` by making it accept...
Okay, I didn't realize that number 3 can just be solved with your patch, and that `safe_format` already splits stuff into composites. So, if the patch from here https://github.com/ultrabug/py3status/issues/2243#issuecomment-2031034606 makes...
I have reworked my script to output py3status format strings and added an on_click action: ``` on_click 1 = 'exec echo $OUTPUT_PART | sed "s/ $//" | pacman -Q -...
Hi. For the past two months I've been using: 1) the patch that adds `self.py3.safe_format` to _external_scripts_ 2) this patch https://github.com/ultrabug/py3status/pull/2245 with great success. My config currently looks like this:...
Hi, I think the reason this happens is that _python-tree-sitter_ removed the `set_language` method in its newest release: https://github.com/tree-sitter/py-tree-sitter/releases/tag/v0.23.0 Downgrading to 0.22.3 fixes the issue, it's just that termux-language-server is...