mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-28 03:04:20 +01:00
Run ryzenadj in hidden mode
This commit is contained in:
parent
e4111f5dfb
commit
dcf35fd120
|
|
@ -81,10 +81,15 @@ namespace PowerControl
|
|||
|
||||
int stampLimit = mW/10;
|
||||
|
||||
Process.Start("Resources/RyzenAdj/ryzenadj.exe", new string[] {
|
||||
"--stapm-limit=" + stampLimit.ToString(),
|
||||
"--slow-limit=" + mW.ToString(),
|
||||
"--fast-limit=" + mW.ToString(),
|
||||
Process.Start(new ProcessStartInfo()
|
||||
{
|
||||
FileName = "Resources/RyzenAdj/ryzenadj.exe",
|
||||
ArgumentList = {
|
||||
"--stapm-limit=" + stampLimit.ToString(),
|
||||
"--slow-limit=" + mW.ToString(),
|
||||
"--fast-limit=" + mW.ToString(),
|
||||
},
|
||||
WindowStyle = ProcessWindowStyle.Hidden
|
||||
});
|
||||
|
||||
return selected;
|
||||
|
|
|
|||
Loading…
Reference in a new issue