]> git.scottworley.com Git - keystroke-timestamps/blobdiff - plot.gnuplot
Include the `fill-in` helper script here
[keystroke-timestamps] / plot.gnuplot
index a8041ffe5beaf75225d6b3d40a908bbc716b0f11..c8329c4a2c0d2f23198e35c5597a0d9291e7e57f 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/gnuplot
+#!/usr/bin/env gnuplot
 
 filename = "keystroke-timestamps.log"
 bucket_size = 300            # Display resolution, in seconds
@@ -16,6 +16,6 @@ plot "< awk '{ print int($1 / ".bucket_size.") }' \"".filename."\" \
   | fill-in ".bucket_size \
   using ($1 + timezone_offset):2 with lines
 
-# (fill-in is https://chkno.net/fill-in )
+# (fill-in is ./fill-in.sh)
 
 pause -1 "Press enter to dismiss"