Allow XGM connection from any dGPU mode for models w/o dGPU https://github.com/seerge/g-helper/issues/1235

Hide Backlight OSD if asus OSD is running
This commit is contained in:
Serge
2023-09-03 14:14:54 +02:00
parent a794f8ed5f
commit 56289abc36
3 changed files with 13 additions and 4 deletions

View File

@@ -55,6 +55,12 @@ namespace GHelper.Helpers
return Process.GetProcessesByName("AsusOptimization").Count() > 0;
}
public static bool IsOSDRunning()
{
return Process.GetProcessesByName("AsusOSD").Count() > 0;
}
public static int GetRunningCount()
{
int count = 0;