Okay I’m confused, I have conky setup how I want it for the most part. But on my GPU section I have the exact same code for GPU 0 & GPU 1 and they appear differently.
and
As you can see GPU 1 doesn’t display like GPU 0. There isn’t any change in the GPU usage section in GPU 1 it shows 0 all the time and never changes. It also doesn’t display the graphs the same, GPU 0 has a Bit size (?) or whatever that number preceding the “B” in the graph for GPU 0.
Here’s the code I have currently:
${color green} GPU:${nvidia modelname} ${nvidia driverversion}
${color orange}GPU0 Usage: Temp: Performance:
${nvidia gpuutil 0} ${nvidia gputemp} ${nvidia perflevelcur}
${nvidiagraph gpuutil 0 }
${color orchid}GPU1 Usage: Temp: Performance:
${nvidia gpuutil 1} ${nvidia gputemp} ${nvidia perflevelcur}
${nvidiagraph gpuutil 1 }
As per the Conky man page it states the format for the nvidiagraph function should be:
nvidiagraph argument (height),(width) (gradient color 1) (gradient color 2) (scale) (-t) (-l) (-x) (-y) (-m) GPU_ID
``` the parenthesis are optional with out them are required. The arguments are (it's a long list):
gputemp temp GPU temperature
gputempthresh- threshold Temperature threshold where the GPU will re-
old duce its clock speed
ambienttemp ambient Ambient temperature outside the graphics card
gpufreqcur gpufreq Current GPU clock speed
gpufreqmin Minimum GPU clock speed
gpufreqmax Maximum GPU clock speed
memfreqcur memfreq Current memory clock speed
memfreqmin Minimum memory clock speed
memfreqmax Maximum memory clock speed
mtrfreqcur mtrfreq Current memory transfer rate clock speed
mtrfreqmin Minimum memory transfer rate clock speed
mtrfreqmax Maximum memory transfer rate clock speed
perflevelcur perflevel Current performance level
perflevelmin Lowest performance level
perflevelmax Highest performance level
perfmode Performance mode
gpuutil GPU utilization %
membwutil Memory bandwidth utilization %
videoutil Video engine utilization %
pcieutil PCIe bandwidth utilization %
memused mem Amount of used memory
memfree memavail Amount of free memory
memmax memtotal Total amount of memory
memutil memperc Memory utilization %
fanspeed Fan speed
fanlevel Fan level %
imagequality Image quality
modelname Model name of the GPU card
driverversion Driver version
I've got the correct arguments or else GPU0 wouldn't display anything correctly just like GPU1.
I'm open to suggestions.





