GameMode: Difference between revisions

imported>IgorM
m Fixed syntax highlighting
Klinger (talk | contribs)
m Category:Software removed (Gaming is enough)
Tag: Manual revert
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
GameMode is a daemon/lib combo for Linux that allows games to request a set of optimisations be temporarily applied to the host OS and/or a game process.
[https://github.com/FeralInteractive/gamemode GameMode] is a daemon/lib combo for Linux that allows games to request a set of optimisations be temporarily applied to the host OS and/or a game process.


== Installation ==
== Installation ==
Line 99: Line 99:
programs.gamemode.settings.general.inhibit_screensaver = 0;
programs.gamemode.settings.general.inhibit_screensaver = 0;
</syntaxhighlight>
</syntaxhighlight>
Setting the power scheme might result in the following error:
<syntaxhighlight lang=text>
::: Verifying CPU governor setting
ERROR: Governor was not set to performance (was actually schedutil)!
::: Failed!
</syntaxhighlight>
Adding the the user to the gamemode group resolves this error.
<syntaxhighlight lang="nix">
extraGroups = ["gamemode"];
</syntaxhighlight>
[[Category:Gaming]]