#!/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" "$@" &