12 lines
526 B
Bash
Executable File
12 lines
526 B
Bash
Executable File
#!/bin/bash
|
|
# Exit immediately on error, treat unset variables as errors, propagate pipe failures.
|
|
set -euo pipefail
|
|
# Load shared log/warn/skip helpers from the installer library.
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
log "Installing Min browser (AUR)..."
|
|
# Min is not in the official repos; yay builds it from the AUR.
|
|
# --answerdiff None: skip the diff prompt; --answerclean All: clean build dir automatically.
|
|
yay -S --answerdiff None --answerclean All --noconfirm min
|
|
log "Min browser installed."
|