11 lines
260 B
Bash
11 lines
260 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
|
|
|
. /etc/profile.d/001-functions
|
|
|
|
AUDIO_LATENCY=$(get_setting audiolatency)
|
|
if [ -z "${AUDIO_LATENCY}" ]
|
|
then
|
|
set_setting global.audiolatency 64
|
|
fi
|