fit updates in to new system

This commit is contained in:
David Young
2026-06-11 10:46:18 -06:00
parent 3b43a11cf1
commit 6dd0358c5f
10 changed files with 147 additions and 47 deletions

17
hooks/160-hampack-extras Normal file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/env bash
# /etc/coredesktop/updaters.d/160-hampack-extras
is_installed() {
command -v curl &>/dev/null && command -v wget &>/dev/null
}
run_update() {
echo "→ Updating not1mm..."
curl -LsSf uvx.sh/not1mm/install.sh | sh
echo "→ Updating dx.py..."
wget -q https://raw.githubusercontent.com/HB9VQQ/dx.py/main/dx.py -O "$HOME/.local/bin/dx.py"
chmod +x "$HOME/.local/bin/dx.py"
echo "✓ Extras updated."
}