I\'ve created a python script in which an event needs to be executed each time I press the Super (or WinKey) on my keyboard.
How can one achieve this without the pyt
If you need to work on Linux, I think you need to somehow monitor for X events.
You can see all events if you run the command "xev" - so I am sure that X provides an interface to all events. A quick googling finds Python X library that probably gives you the stuff you need.
You can download it here.