fix(gamemode): properly configure gpu settings
This commit is contained in:
parent
43f6b7b491
commit
c770d8e038
|
@ -42,17 +42,17 @@ inhibit_screensaver=0
|
||||||
; It is also highly recommended you try these settings out first manually to find the sweet spots
|
; It is also highly recommended you try these settings out first manually to find the sweet spots
|
||||||
|
|
||||||
; Setting this to the keyphrase "accept-responsibility" will allow gamemode to apply GPU optimisations such as overclocks
|
; Setting this to the keyphrase "accept-responsibility" will allow gamemode to apply GPU optimisations such as overclocks
|
||||||
apply_gpu_optimisations=accept-responsibility
|
;apply_gpu_optimisations=accept-responsibility
|
||||||
|
|
||||||
; The DRM device number on the system (usually 0), ie. the number in /sys/class/drm/card0/
|
; The DRM device number on the system (usually 0), ie. the number in /sys/class/drm/card0/
|
||||||
gpu_device=1
|
;gpu_device=1
|
||||||
|
|
||||||
; AMD specific settings
|
; AMD specific settings
|
||||||
; Requires a relatively up to date AMDGPU kernel module
|
; Requires a relatively up to date AMDGPU kernel module
|
||||||
; See: https://dri.freedesktop.org/docs/drm/gpu/amdgpu.html#gpu-power-thermal-controls-and-monitoring
|
; See: https://dri.freedesktop.org/docs/drm/gpu/amdgpu.html#gpu-power-thermal-controls-and-monitoring
|
||||||
; It is also highly recommended you use lm-sensors (or other available tools) to verify card temperatures
|
; It is also highly recommended you use lm-sensors (or other available tools) to verify card temperatures
|
||||||
; This corresponds to power_dpm_force_performance_level, "manual" is not supported for now
|
; This corresponds to power_dpm_force_performance_level, "manual" is not supported for now
|
||||||
amd_performance_level=auto
|
;amd_performance_level=auto
|
||||||
|
|
||||||
[supervisor]
|
[supervisor]
|
||||||
; This section controls the new gamemode functions gamemode_request_start_for and gamemode_request_end_for
|
; This section controls the new gamemode functions gamemode_request_start_for and gamemode_request_end_for
|
||||||
|
|
|
@ -26,6 +26,13 @@
|
||||||
programs.gamemode = {
|
programs.gamemode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableRenice = true;
|
enableRenice = true;
|
||||||
|
settings = {
|
||||||
|
gpu = {
|
||||||
|
apply_gpu_optimisations = "accept-responsibility";
|
||||||
|
gpu_device = 1;
|
||||||
|
amd_performance_level = "auto";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable KDEConnect
|
# Enable KDEConnect
|
||||||
|
|
Loading…
Reference in a new issue