distribution/packages/jelos/autostart/005-audio

33 lines
688 B
Text
Raw Normal View History

#!/bin/sh
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
# Minimal OS variable loading for performance
. /etc/profile.d/02-distribution
2023-08-07 11:12:57 +00:00
tocon "Configuring Audio..."
STATE=$(systemctl isactive pipewire-pulse)
if [ "${STATE}" = "inactive" ]
then
systemctl start pipewire-pulse
fi
2023-08-07 12:02:33 +00:00
### Set the default audio path, needed for some devices
if [ ! -z "${DEVICE_PLAYBACK_PATH_SPK}" ]
then
amixer cset name='Playback Path' ${DEVICE_PLAYBACK_PATH_SPK}
fi
VOLUME=$(get_setting audio.volume)
if [[ -z ${VOLUME} ]]
then
VOLUME="60"
elif [[ -n "${DEVICE_VOLUME}" ]]
then
VOLUME="${DEVICE_VOLUME}"
fi
/usr/bin/volume ${VOLUME}