deafe59438
* Corrects Loki audio latency quirk. * Fixes system startup bug (threads/gpu profile). * Fixes AMD64 default tdp quirk.
11 lines
267 B
Bash
11 lines
267 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
. /etc/profile.d/001-functions
|
|
|
|
AUDIO_LATENCY=$(get_setting audiolatency)
|
|
if [ -z "${AUDIO_LATENCY}" ]
|
|
then
|
|
set_setting global.audiolatency 64
|
|
fi
|