Files
dotfiles/install/tools.sh
2026-03-26 23:53:32 +02:00

12 lines
403 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
echo "==> Installing extra tools..."
# ─── stow ─────────────────────────────────────────────────────────────────────
if ! command -v stow &>/dev/null; then
sudo apt install -y stow
fi
echo "==> Extra tools done."