You are not logged in.
Pages: 1
Yes, it's 5.30pm on New Years Eve and I'm worried about counting keystrokes
Does anyone know if there's a keystroke counter (not logger) for Linux / Gnome?
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
To scare myself
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
That would be pretty fun..
Offline
I think I got it:
part 1 : logging
sudo cat /dev/input/event1 > ~/keyboard1.txt
look through ls -R /dev/input to see if keyboard is somewhere else, and make sure not to put the log in dev
part2 : getting keycount
echo $(( $(cat ~/keyboard1.txt | wc -c) / 96))
You should probably change the logger to only log relevant data, but this seems to work.
Offline
Nice Procyon... I'll try and hack that in to something )
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
Pages: 1