marcopixel / SysDash

A simple and clean system monitoring skin for Rainmeter.
MIT License
170 stars 32 forks source link

Problem with GPU name #26

Open mantht opened 6 years ago

mantht commented 6 years ago

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!

MichaelCadavillo commented 6 years ago

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

R4GO commented 6 years ago

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

MichaelCadavillo commented 6 years ago

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#.*":""
R4GO commented 6 years ago

Fixed, Thk you :D