21 lines
327 B
Plaintext
21 lines
327 B
Plaintext
|
#!/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;
|