Re: [PLUG] keypress timing logger

2014-12-04 Thread Keith Lofstrom
> On Mon, Dec 01, 2014 at 08:39:35PM -0800, Keith Lofstrom wrote: > > I want to time a sequence of events over about five minutes, > > pressing a keyboard key and adding a timestamp to a file. On Mon, Dec 01, 2014 at 09:14:07PM -0800, Paul Mullen wrote: > You could do it with a short bash script.

Re: [PLUG] keypress timing logger

2014-12-01 Thread Michael Rasmussen
On Mon, Dec 01, 2014 at 08:39:35PM -0800, Keith Lofstrom wrote: > I want to time a sequence of events over about five > minutes, pressing a keyboard key and adding a > timestamp to a file. > > I can do this by redirecting the output of xev to a > file, then editing everything but the time field fo

Re: [PLUG] keypress timing logger

2014-12-01 Thread Paul Mullen
On Mon, Dec 01, 2014 at 08:39:35PM -0800, Keith Lofstrom wrote: > I want to time a sequence of events over about five > minutes, pressing a keyboard key and adding a > timestamp to a file. > > I can do this by redirecting the output of xev to a > file, then editing everything but the time field fo

[PLUG] keypress timing logger

2014-12-01 Thread Keith Lofstrom
I want to time a sequence of events over about five minutes, pressing a keyboard key and adding a timestamp to a file. I can do this by redirecting the output of xev to a file, then editing everything but the time field for the key presses and dividing by 1000, but there may already be a little pr