11 lines
428 B
Bash
Executable File
11 lines
428 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 Mixxx (DJ software)..."
|
|
# Mixxx is available in the official Arch repos; --needed skips reinstallation.
|
|
sudo pacman -S --noconfirm --needed mixxx
|
|
log "Mixxx installed."
|