more changes

This commit is contained in:
David Young
2026-04-10 15:23:17 -06:00
parent f2edc30575
commit 4f173f7c4c
3 changed files with 23 additions and 8 deletions

9
install-openhamclock.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/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"...