update update process

This commit is contained in:
David Young
2026-06-15 12:08:23 -06:00
parent 6dd0358c5f
commit 9ad0d0720d
9 changed files with 2 additions and 2 deletions

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."
}