Refactor @blueswills changes

This commit is contained in:
Martin Wiethan 2024-06-27 18:55:20 +02:00
parent 84fe65001b
commit e91937c9d9

View File

@ -1,29 +1,21 @@
function Invoke-WinUtilGPU { function Invoke-WinUtilGPU {
$gpuInfo = Get-CimInstance Win32_VideoController $gpuInfo = Get-CimInstance Win32_VideoController
foreach ($gpu in $gpuInfo) { # GPUs to blacklist from using Demanding Theming
$gpuName = $gpu.Name $lowPowerGPUs = (
if ($gpuName -like "*NVIDIA*") { "*NVIDIA GeForce*M*",
return $true # NVIDIA GPU found "*NVIDIA GeForce*Laptop*",
} "*NVIDIA GeForce*GT*",
} "*AMD Radeon(TM)*",
"*UHD*"
)
foreach ($gpu in $gpuInfo) { foreach ($gpu in $gpuInfo) {
$gpuName = $gpu.Name foreach ($gpuPattern in $lowPowerGPUs){
if ($gpuName -like "*AMD Radeon RX*") { if ($gpu.Name -like $gpuPattern) {
return $true # AMD GPU Found return $false
}
}
foreach ($gpu in $gpuInfo) {
$gpuName = $gpu.Name
if ($gpuName -like "*UHD*") {
return $false # Intel Intergrated GPU Found
}
}
foreach ($gpu in $gpuInfo) {
$gpuName = $gpu.Name
if ($gpuName -like "*AMD Radeon(TM)*") {
return $false # AMD Intergrated GPU Found
} }
} }
} }
return $true
}