mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-04-04 13:57:39 +00:00
Add GPU scaling and Vivid Gaming selection
This commit is contained in:
parent
ed6cc9ea14
commit
af52e41aef
9 changed files with 765 additions and 50 deletions
21
PowerControl/Helpers/AMD/RadeonSoftware.cs
Normal file
21
PowerControl/Helpers/AMD/RadeonSoftware.cs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PowerControl.Helpers.AMD
|
||||
{
|
||||
public class RadeonSoftware
|
||||
{
|
||||
public static void Kill()
|
||||
{
|
||||
foreach (var process in Process.GetProcessesByName("RadeonSoftware.exe"))
|
||||
{
|
||||
try { process.Kill(); }
|
||||
catch { }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue