feat: add antigravity cli and termato as installed packages

This commit is contained in:
Stevan Freeborn
2026-07-24 14:16:55 -05:00
parent 28d7ae9fd7
commit 9e52253bba
4 changed files with 53 additions and 0 deletions
@@ -176,6 +176,22 @@ else
echo "==> uv already installed"
fi
# --- Antigravity CLI ---
if ! command -v antigravity &>/dev/null; then
echo "==> Installing Antigravity CLI..."
curl -fsSL https://antigravity.google/cli/install.sh | bash
else
echo "==> Antigravity CLI already installed"
fi
# --- termato ---
if ! command -v termato &>/dev/null; then
echo "==> Installing termato..."
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/StevanFreeborn/termato/releases/latest/download/termato-installer.sh | sh
else
echo "==> termato already installed"
fi
# --- Docker ---
if ! command -v docker &>/dev/null; then
echo "==> Installing Docker..."