2023-09-13 00:26:54 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Copyright (C) 2023-present Fewtarius (https://github.com/fewtarius)
|
2023-09-04 10:46:11 +00:00
|
|
|
|
|
|
|
AUDIO_LATENCY=$(get_setting audiolatency)
|
2023-09-13 00:26:54 +00:00
|
|
|
if [ -n "${AUDIO_LATENCY}" ]
|
2023-09-04 10:46:11 +00:00
|
|
|
then
|
|
|
|
export PULSE_LATENCY_MSEC=${AUDIO_LATENCY}
|
|
|
|
fi
|