wavexx / screenkey

A screencast tool to display your keys inspired by Screenflick
https://www.thregr.org/~wavexx/software/screenkey/
GNU General Public License v3.0
757 stars 66 forks source link

Feature request: Count of key strokes #51

Closed kaihendry closed 6 years ago

kaihendry commented 6 years ago

Idea is to show how much input is required in some flows. If you know any other ways of doing it for a screencast, please let me know!

wavexx commented 6 years ago

Do you want a live running counter to be displayed, or just have an estimate for yourself? [I could think a couple of easy ways to do it for the latter]

kaihendry commented 6 years ago

Ideally on screen, nonetheless I'm interested in how to get an estimate!

wavexx commented 6 years ago

On Mon, Oct 16 2017, Kai Hendry wrote:

Ideally on screen, nonetheless I'm interested in how to get an estimate!

Brutally, you can do the following from the command line:

python ./Screenkey/inputlistener.py > keylog

to record the keypresses into a files. Then count them:

grep "'pressed': True" keylog | wc -l

wavexx commented 6 years ago

Closing this, as it's not something I see directly useful in screenkey itself.