9 lines
243 B
Bash
9 lines
243 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2023-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
AUDIO_LATENCY=$(get_setting audiolatency)
|
|
if [ -n "${AUDIO_LATENCY}" ]
|
|
then
|
|
export PULSE_LATENCY_MSEC=${AUDIO_LATENCY}
|
|
fi
|