MacOS – What stopwatch timer app uses keyboard shortcuts on macOS

macossoftware-recommendation

It’s not clear which of the timers from this other thread support hotkey / Keyboard only shortcut operation.

Can anyone recommend a stopwatch timer for Mac which can be started or stopped using hotkey?

Best Answer

A low-tech solution is to open a terminal window, run time cat, and then stop by pressing control-c:

$ time cat
^C
4.487
$

Two ways to show the number of seconds since the last run:

f=${TMPDIR}stopwatch;date +%s>>$f;tail -n2 $f|awk '{l=$0;getline;print $0-l}'
now=$(date +%s);echo $((now-prev));prev=$now