thagrol

Results 8 comments of thagrol

Nothing springs immediately to mind but: 1, What OS are you using? 2. What major OS release (Buster, Bullseye, etc) are you using? 3. Was that cut'n'pasted or typed in?...

I'm sure I tested that. Oh well. I'll add it to the list for the next release.

That's not currently supported. If/when I have some free time I'll look into it.

Found some time to work on this. initial support for multiple ping targets is now present. See default.cfg for the new config options.

fixed pending release

This is not an issue with $PATH and everything to do with your script/program/program argument using a relative path not an absolute one. $PATH is used by the shell when...

Interesting. Yes, I did misunderstand. Yes, I've reproduced the behaviour you describe. Happens with both X11 and Wayland/Watfire. Not sure what further action to take at this time. I would...

For python something like this: ``` import os my_dir = os.path.dirname(os.path.realpath(__file__)) with open(os.path.join(my_dir, 'myfile')) as f: [...] ```