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