2022-11-19 16:13:13 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
|
|
|
|
. /etc/profile
|
|
|
|
|
2023-01-26 22:51:43 +00:00
|
|
|
MYDEVICE=$(get_setting system.audiodevice)
|
|
|
|
if [ -z "${MYDEVICE}" ]
|
|
|
|
then
|
|
|
|
### Set the audio device
|
|
|
|
set-audio set "HDMI (0:3)"
|
|
|
|
fi
|