]>
git.scottworley.com Git - keystroke-timestamps/blob - gaps.sh
cf951049217ebf8e1e13fda0fb643612f728bc94
4 LOGFILE
="${2:-$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)