From 44662b3fb7b021ac18bda0e77f1146fe4e22b34a Mon Sep 17 00:00:00 2001 From: Sepero Date: Sun, 25 Oct 2015 08:32:47 -0400 Subject: Misc typo corrections --- temp_throttle.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'temp_throttle.sh') diff --git a/temp_throttle.sh b/temp_throttle.sh index 57686ce..d90f368 100755 --- a/temp_throttle.sh +++ b/temp_throttle.sh @@ -5,7 +5,7 @@ # version 2.20 cat << EOF -Author: Sepero 2013 (sepero 111 @ gmx . com) +Author: Sepero 2016 (sepero 111 @ gmx . com) URL: http://github.com/Sepero/temp-throttle/ EOF @@ -140,13 +140,13 @@ get_temp () { ### END define script functions. -# Mainloop +# Main loop while true; do - get_temp # Gets the current tempurature and set it to the variable TEMP. + get_temp # Gets the current temperature and set it to the variable TEMP. if [ $TEMP -gt $MAX_TEMP ]; then # Throttle if too hot. throttle elif [ $TEMP -le $LOW_TEMP ]; then # Unthrottle if cool. unthrottle fi - sleep 3 # The amount of time between checking tempuratures. + sleep 3 # The amount of time between checking temperatures. done -- cgit v1.2.3