10 lines
415 B
Bash
10 lines
415 B
Bash
#!/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."
|