25 lines
706 B
Bash
25 lines
706 B
Bash
#!/bin/bash
|
|
|
|
# Arch Linux Music Production Module
|
|
|
|
arch_setup_music_production() {
|
|
if ! role_enabled "MUSIC"; then
|
|
log INFO "Music role not enabled - skipping music production setup"
|
|
return 0
|
|
fi
|
|
|
|
log SECTION "Installing music production tools"
|
|
local section_start=$(date +%s)
|
|
|
|
if confirm "Install music production software?"; then
|
|
# Music production packages (already handled in system.sh for audio)
|
|
# Install Bitwig Studio
|
|
install_flatpak_apps com.bitwig.BitwigStudio
|
|
|
|
log SUCCESS "Music production tools installed $(show_timer $section_start)"
|
|
fi
|
|
}
|
|
|
|
if [ -z "$ARCH_MUSIC_LOADED" ]; then
|
|
ARCH_MUSIC_LOADED=true
|
|
fi |