2022-02-06 11:29:12 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
|
|
|
|
. /etc/profile
|
|
|
|
|
|
|
|
# Copy in the configuration
|
|
|
|
if [ ! -e "/storage/.config/asound.conf" ]
|
|
|
|
then
|
|
|
|
cp /usr/config/asound.conf /storage/.config
|
|
|
|
fi
|
|
|
|
|
2022-02-11 12:03:07 +00:00
|
|
|
# Set the mixer in ES
|
|
|
|
sed -i 's#<string name="AudioDevice" value="'.*'" />#<string name="AudioDevice" value="'${DEVICE_AUDIO_MIXER}'" />#' .emulationstation/es_settings.cfg
|
|
|
|
|
2022-02-06 11:29:12 +00:00
|
|
|
VOL=$(get_setting "audio.volume" 2>/dev/null)
|
|
|
|
amixer set "${DEVICE_AUDIO_MIXER}" ${VOL}%
|