22 lines
328 B
Plaintext
22 lines
328 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
echo
|
||
|
|
||
|
echo -n "Enter a number 1-100 to set fan: "
|
||
|
read set
|
||
|
|
||
|
|
||
|
aticonfig --pplib-cmd "set fanspeed 0 $set"
|
||
|
|
||
|
|
||
|
if (( "$set" >= "101" ))
|
||
|
then echo "You trying to break my fan nigger?"
|
||
|
|
||
|
elif (( "$set" <= "100" ))
|
||
|
then echo "Good job fucker you did it!"
|
||
|
else
|
||
|
echo "You typed in the wrong fucking shit faggot"
|
||
|
fi
|
||
|
|
||
|
exit 0;
|