distribution/packages/hardware/quirks/platforms/S922X/060-game_settings

18 lines
446 B
Text
Raw Normal View History

#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
. /etc/profile.d/001-functions
### Set the default performance scaling mode for a few systems.
for SYSTEM in 3ds dreamcast gamecube n64 ports ps2 psp saturn
do
SETTING=$(get_setting ${SYSTEM})
if [ -z ${SETTING} ]
then
set_setting ${SYSTEM}.cpugovernor performance
set_setting ${SYSTEM}.gpuperf profile_peak
fi
done