moses-palmer

Results 103 comments of moses-palmer

@FrostWolf1, I attempted reproducing the issue, but failed. I ran the script below from `cmd.exe`, and then immediately switched focus to `notepad.exe`. ```python import pynput, time time.sleep(3) pynput.keyboard.Controller().type('Hello world!') ```...

That does indeed sound strange. What platforms are you using? On Wed, 13 Feb 2019, 07:00 willstout Oh thank god someone else was having this issue, I only get A...

Do you run the `cmd` window as an administrator account?

From reading the answers to the linked question, it seems that installing *pygobject* would be the preferable way to solve the problem. Did you try that? That is what [the...

Thank you for your suggestion. I am not certain whether this is supported by all backends, but you will find the relevant code for Windows [here](https://github.com/moses-palmer/pystray/blob/a03892707149e8e7458e0e77dc292c9ab6f38798/lib/pystray/_win32.py#L323) and for Linux [here](https://github.com/moses-palmer/pystray/blob/a03892707149e8e7458e0e77dc292c9ab6f38798/lib/pystray/_util/notify_dbus.py#L72)....

Thank you for your report and sorry for the late reply. I personally run _GNOME_ under _Wayland_, and on my system the GTK backend does not work at all, so...

This error has been fixed in commit 7d110fd; would you mind testing again?

@SpookedByRoaches, thank you very much! That was an obvious oversight. I have incorporated your fix into the *master* branch.

Thank you for your comments and request! I understand your request to get rid of the *PIL* dependency---125 MB of seemingly unnecessary dependencies is somewhat unreasonable. The reason for the...

The original reason for the dependency on _PIL_ is actually the _X.Org_ backend; it has a direct dependency on _PIL_ in the form of [put_pil_image](https://github.com/python-xlib/python-xlib/blob/8901e831737e79fe5645f48089d70e1d1046d2f2/Xlib/xobject/drawable.py#L213). Now that I actually looked...