soapdish/scripts/system/system-alsa_mixer

19 lines
388 B
Bash
Executable File

#!/bin/bash
# SYSTEM: ALSA MIXER
# Launch alsamixer
# Includes and Declarations (global variables, formatting, and functions)
source "${APPLICATION_ROOT}/scripts/system/system-functions"
source "${APPLICATION_ROOT}/scripts/system/system-declarations"
# If playlist exists, delete it.
sudo alsamixer
# Echo result
confirmation_message "[M] ALSA mixer visitation completed"
echo "";