You are not logged in.
As you can see GPU temp is printed X2
This a old conky that has always looked good on other machines. It conky 1.9 with Head_on_a_Stick's repo. This is the code
GPU Temp:${alignr}${execi 60 nvidia-settings -query GPUCoreTemp | perl -ne 'print $1 if /GPUCoreTemp.*?: (\d+)./;'}°C
The problem is probably GLX Version: 4.6.0 NVIDIA 418.56 fault and can not be fixed but if anyone can think of anything?
Last edited by dove (2019-07-01 20:49:15)
Offline
If you can't find a solution using nvidia-settings, then nvidia-smi works for me
nvidia-smi --query-gpu=temperature.gpu --format=csv,noheader
Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Offline
If you can't find a solution using nvidia-settings, then nvidia-smi works for me
nvidia-smi --query-gpu=temperature.gpu --format=csv,noheader
Is there a trick to get this code to work because it just prints out on the conky?
Offline
damo wrote:If you can't find a solution using nvidia-settings, then nvidia-smi works for me
nvidia-smi --query-gpu=temperature.gpu --format=csv,noheader
Is there a trick to get this code to work because it just prints out on the conky?
Presumably you want it to print on the conky? I would use commands in a script and echo lines to the conky
TEMP=${nvidia-smi --query-gpu=temperature.gpu --format=csv,noheader}
echo "\${goto xxx}"$TEMP"°C"
NB My conkys use lua to display the values, and this code snippet is off the top of my head. The "$" needs to be escaped.
Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Offline
Is there a reason that the conky built-in ${nvidia gputemp} isn't working for you?
Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Offline
Is there a reason that the conky built-in ${nvidia gputemp} isn't working for you?
I just get the code printed in conky not the tem.
Offline
I found some code to fix problem
${execi 60 nvidia-settings -query [gpu:0]/GPUCoreTemp -t}°C
Offline