mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
S15 fix
This commit is contained in:
@@ -187,7 +187,11 @@ public class AmdGpuControl : IGpuControl
|
||||
}
|
||||
}
|
||||
|
||||
foreach (string kill in appNames) ProcessHelper.KillByName(kill);
|
||||
List<string> immune = new() { "svchost", "system", "ntoskrnl", "csrss", "winlogon", "wininit", "smss" };
|
||||
|
||||
foreach (string kill in appNames)
|
||||
if (!immune.Contains(kill.ToLower()))
|
||||
ProcessHelper.KillByName(kill);
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user