scripts initial

This commit is contained in:
David Young
2026-04-10 14:49:36 -06:00
parent 6b379cfb40
commit f2edc30575
2 changed files with 13 additions and 0 deletions

11
scripts/start-hamclock.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
# Start HamClock
HAMCLOCK="$HOME/.local/bin/hamclock"
if [ ! -x "$HAMCLOCK" ]; then
echo "Error: hamclock not found or not executable at $HAMCLOCK" >&2
exit 1
fi
"$HAMCLOCK" "$@" &