]>
git.scottworley.com Git - keystroke-timestamps/blob - gaps.sh
46a05cc1f30af8d70162fce280b912e8e8e7e894
4 LOGFILE
="$HOME/keystroke-timestamps.log"
6 awk -vthreshold="$threshold" '
11 if (prev && $1 - prev > threshold) {
12 print(strftime(time_fmt, prev), "to", strftime(time_fmt, $1), "was", $1 - prev)