#!/bin/bash
# Allows to load EG4 Alsa mixer configuration file.
# This configures each audio channel with a default value.

FILE=/var/lib/alsa/eg4-amixer.state

if [ ! -f "$FILE" ]; then
    echo "EG4 amixer configuration not found."
else
    alsactl --file=$FILE restore
fi
