aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--LICENSE.md2
-rwxr-xr-xtemp_throttle.sh8
2 files changed, 5 insertions, 5 deletions
diff --git a/LICENSE.md b/LICENSE.md
index 2aef94a..ce85b30 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,3 +1,3 @@
GNU GPL 2.0
http://www.gnu.org/licenses/gpl-2.0.html
-Sepero 2012-2013
+Sepero 2012-2016
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