From 2ecebf75f7fd4624e55958b9892d370b36fab220 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Sat, 22 Aug 2026 07:29:49 -0700 Subject: [PATCH 1/1] More portable shebangs --- Changelog | 1 + gaps.sh | 2 +- plot.gnuplot | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index c7fd952..c6c8f65 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ ## [Unreleased] +- More portable shebangs ## [1.1.0] - 2026-08-21 diff --git a/gaps.sh b/gaps.sh index 361e2a6..7f8de73 100755 --- a/gaps.sh +++ b/gaps.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh threshold=${1:-3600} LOGFILE="${2:-$HOME/keystroke-timestamps.log}" diff --git a/plot.gnuplot b/plot.gnuplot index a8041ff..47b0780 100755 --- a/plot.gnuplot +++ b/plot.gnuplot @@ -1,4 +1,4 @@ -#!/usr/bin/gnuplot +#!/usr/bin/env gnuplot filename = "keystroke-timestamps.log" bucket_size = 300 # Display resolution, in seconds -- 2.51.2