2023-09-13 00:26:54 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
|
2023-09-19 10:57:33 +00:00
|
|
|
. /etc/profile.d/001-functions
|
|
|
|
|
2023-09-13 00:26:54 +00:00
|
|
|
AUDIO_LATENCY=$(get_setting audiolatency)
|
|
|
|
if [ -z "${AUDIO_LATENCY}" ]
|
|
|
|
then
|
|
|
|
set_setting global.audiolatency 64
|
|
|
|
fi
|