21 lines
327 B
Plaintext
Raw Normal View History

2018-06-21 22:49:50 -05:00
#!/bin/bash
#Temp of AMD GPU
clear
echo " ------------------"
echo "|AMD GPU STATISTICS |"
echo " ------------------"
echo
echo "GPU TEMP"
echo "--------"
aticonfig --odgt
echo "GPU/MEM CLOCKS"
echo "--------------"
aticonfig --od-getclocks
echo "FAN SPEED"
echo "---------"
aticonfig --pplib-cmd "get fanspeed 0"
exit 0;