#!/bin/bash set -euo pipefail source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh" log "Installing bastet and vitetris (AUR)..." # Both bastet and vitetris are AUR-only — they are NOT in the official repos, # so `pacman -S bastet` fails with "target not found". Install via the AUR helper. yay -S --answerdiff None --answerclean All --noconfirm --needed bastet vitetris log "Tetris CLI tools installed."