soapdish/scripts/system/system-alsa_mixer
2021-03-06 23:47:06 -08:00

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 "";