Marko Zivic
Marko Zivic
Here is simple bash script for Linux, until this feature is implemented. It supports 2 interfaces, but can be easily extended. Script must be placed in same directory as dispatch...
Here is a quick fix until new nyx version is out: Just replace all inspect.getargspec() with inspect.getfullargspec() Have installed nyx and run this command as sudo: `find /usr/lib/python3.11/site-packages/nyx -type f...
I am on arch linux, and have no debian-based linux to test, i had no idea that pacman installs nyx to different directory. So, for debian-based, patch is: ```find /usr/local/bin/nyx...
This will not insert newline and title, but just clear lyrics from previous song, as clyrics does outside tmux. The problem is [here](https://github.com/trizen/clyrics/blob/177f4aca3733d1619e96c538793c2db444ae3fc0/clyrics#L254C5-L254C53): `reset -Q` clears terminal but not tmux's...
Note: before merging, correct versionadded in `docs/reST/ref/draw.rst`, if needed.
I moved `ellipse` and `aaellipse` functions bellow `circle` and `aacircle`, because `aacircle` is called in `aaellipse` and `aa*` functions should always be bellow regular one.
Ok, removing `draw.pie` from the list, because it can be drawn with `draw.arc` and 2 `draw.lines`.
Idea for draw.aapolygon: ``` If width == 1: 1. Draw closed aalines with width=1 Else: 1. Draw closed aalines with width=1 2. Now for each point: 3. calculate bisecting vector...
#586 turned out to still be related to gfxdraw. Partually fixed in #3008 The problem was with `get_antialiased_color`.
aapolygon will be added in #3126 `draw.poylgon` and `gfxdraw.aapolygon` or `draw.aalines` cannot be overlapped without issues:  Top: first drawn `draw.polygon`, then with same points `draw.aalines`. Bottom: just `draw.aalines` with...