chezmoi/scripts/executable_gpu.temp.sh
2022-06-28 20:49:43 +02:00

11 lines
205 B
Bash

if ! command -v nvidia-settings &> /dev/null
then
# command not found
echo ""
exit
else
# simply output the gpucoretemp as reported by the binary
nvidia-settings -q gpucoretemp -t
fi