I am trying to write a program that tracks when the active window changes using Xlib. I am have trouble figuring out the best way to do this. These are my ideas so far:
- Every second use _NET_ACTIVE_WINDOW to get the active window and if it has changed then running the related code for the event.
- Get a list of all windows and listen to their focus in event. I would have to figure out how to keep an up to date list of open windows though.
Is their an easier/better way? I am new to programming with Xlib.
XGetInputFocus()from the event handler to find out who has it when moved would be less overhead. How realtime does this have to be ? If the answer to that is "a sec is fine" then the polling method seems best. – FrankH. Mar 10 '11 at 17:12