Files
HamPackServer/install-openhamclock.sh
2026-04-10 15:42:38 -06:00

9 lines
255 B
Bash
Executable File

#!/bin/bash
#
# Purpose : Install openhamclock
if [ ! -d "$HOME/.local/bin/openhamclock" ]; then
curl -fsSL https://raw.githubusercontent.com/accius/openhamclock/main/scripts/setup-linux.sh | bash -s -- --service
fi
echo "openhamclock is installed"...