Last active
December 7, 2015 12:40
-
-
Save 0xItx/65e97e75c0aadb69d62e to your computer and use it in GitHub Desktop.
AMD GPU fan speed controller
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [[ -n $1 ]] ; then | |
amdconfig --pplib-cmd "set fanspeed 0 $1" | |
amdconfig --pplib-cmd "get fanspeed 0" | |
else | |
amdconfig --pplib-cmd "get fanspeed 0" | |
amdconfig --odgt --odgc | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment