views:

307

answers:

1

After looking at RescueTime for windows/mac, it seems that there's a version for linux but doesn't seem up to date. Also, it's the weekends and I want to spend time playing with X11..

I'm thinking of making a simple productivity-polling app, that every short interval polls the active windows, and intercepts (and passes along) mouse and keyboard presses to measure productivity.

Is this possible at all? After checking Xlib I'm at a loss on where to find the binary name of an executable. etc.

+2  A: 

Finding the PID (and by extension the backing executable) in X isn't necessarily possible (due to the fact that the window might not even be owned by a process on your current box).

See http://stackoverflow.com/questions/2041532/getting-pid-and-details-for-topmost-window or http://stackoverflow.com/questions/151407/how-to-get-an-x11-window-from-a-process-id for a solution which might work in a limited set of cases (by querying for the _NET_WM_PID property).

tyranid
Thanks, that got me what I wanted :D
kamziro