9 lines
235 B
Bash
9 lines
235 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
AUDIO_LATENCY=$(get_setting audiolatency)
|
|
if [ -z "${AUDIO_LATENCY}" ]
|
|
then
|
|
set_setting global.audiolatency 64
|
|
fi
|