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

10 lines
333 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 | \
sed 's|INSTALL_DIR="$HOME/openhamclock"|INSTALL_DIR="$HOME/.local/bin/openhamclock"|' | bash
fi
echo "openhamclock is installed"...