Files
HamPackServer/install-openhamclock.sh
David Young 4f173f7c4c more changes
2026-04-10 15:23:17 -06:00

9 lines
266 B
Bash
Executable File

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