Georgi Dimitrov
Georgi Dimitrov
I am suggesting to change the API with something along the lines of ```lua function M.on(opts) ... if not opts.disable_callbacks then data.do_callback("minimalist", "open") end ... end ``` instead of ```lua...
Yes, something like that would work. What might be even better is to expose functions which return whether a mode is active, e.g. ```lua require('true-zen.ataraxis').is_on() ``` One could then use...
Hi @muesli , Yes I was thinking of doing an automatic fallback to stdin but decided that it might lead to some unexpected behaviour for some users - window size...
Hi there, Can you try suppressing warnings like this: ``` python import requests requests.packages.urllib3.disable_warnings() ```
Hi @jagadeesh-sudhakaraiah , I think I know what might be causing this. Upon executing `protonvpn-gui` I'm getting the following error: ```sh Traceback (most recent call last): File "/usr/local/lib/python3.8/dist-packages/linux_gui/presenters/dashboard_presenter.py", line 384,...
@Papigoe You could also try something like ```sh sudo find /usr/local/lib -name linux_gui -type d ``` You should get the first part of the path.
Yes, indeed. Having the receiver as a value instead of a pointer works either way. Having it as a pointer works only if a pointer is passed.
Hi @kanata2 , Sorry for the long delay. Here's the change applied to all types including some tests :)
Hi, what a great project! I'd like to suggest adding optional borders around the floating windows :) ``` [ "┌", "─", "┐", "│", "┘", "─", "└", "│" ] ``` Example...
I think a temporary workaround is ```bash number=1 echo $number | bash -c "$(wget -qO- https://git.io/vQgMr)" ```