SysDash icon indicating copy to clipboard operation
SysDash copied to clipboard

Problem with GPU name

Open mantht opened this issue 7 years ago • 4 comments

I am using laptop which has both GPU (Intel HD Graphic and GeForce GTX) SysDash only shows the temperature of HD Graphic. How can I change it to my GTX? Thank you!

mantht avatar Feb 12 '18 09:02 mantht

Had the same problem. Solved it by editing the "Substitute=" on GPUTemp.ini file

MichaelCadavillo avatar Jul 06 '18 07:07 MichaelCadavillo

But how, i dont find what I should edit on GPUTemp.ini file

R4GO avatar Sep 07 '18 15:09 R4GO

Just had to do some trial and error. The default one is:

Substitute="Name.*#CRLF#":"","#CRLF#.*":"","  ":"","Radeon":"AMD Radeon#CRLF#","NVIDIA GeForce":"NVIDIA GeForce#CRLF#"

which basically only gets the first GPU in which it would be the integrated graphics.

now if you would input this:

Substitute="Name.*#CRLF#":""

it would show all your GPUs Most likely the one that you would want to show would be the second one (dedicated graphics)

What my solution was to basically remove the line where the Integrated graphics (Intel Graphics) is in and all the unnecessary spaces and line breaks Here's my solution (you might have to tweak it a little):

Substitute="Name.*#CRLF#":"","Intel.*.#CRLF#":"","  ":"","#CRLF#.*":""

MichaelCadavillo avatar Sep 08 '18 01:09 MichaelCadavillo

Fixed, Thk you :D

R4GO avatar Sep 08 '18 09:09 R4GO