initial commit

This commit is contained in:
2026-03-26 22:12:36 +02:00
commit fe48b97674
17 changed files with 631 additions and 0 deletions

11
install/tools.sh Executable file
View File

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