11 lines
309 B
Bash
11 lines
309 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
log "Installing bastet (Tetris CLI)..."
|
|
sudo pacman -S --noconfirm --needed bastet
|
|
|
|
log "Installing vitetris (AUR)..."
|
|
yay -S --answerdiff None --answerclean All --noconfirm vitetris
|
|
log "Tetris CLI tools installed."
|