summaryrefslogtreecommitdiff
path: root/tempmon.sh
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-12-03 13:27:04 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-12-03 13:27:04 -0500
commita36ecefba2a3d54feba3206e058df5c33aba4af9 (patch)
tree855f0f69c16c615a6cf72f7b48acbe23d4854f2c /tempmon.sh
parent05d7b5e619f9c8488b7a13057dac92b37f2cbfcb (diff)
touch up {battery,temp}mon
Diffstat (limited to 'tempmon.sh')
-rw-r--r--tempmon.sh20
1 files changed, 12 insertions, 8 deletions
diff --git a/tempmon.sh b/tempmon.sh
index 7fe99d9..3e752be 100644
--- a/tempmon.sh
+++ b/tempmon.sh
@@ -1,14 +1,18 @@
#!/bin/bash
+if [[ $# -ne 2 ]]; then
+ echo "Usage: $0 THRESHOLD COMMAND"
+fi
+
thresh=$1
-shift
+cmd=$2
while true; do
- num=`acpi -t|sed -nr 's/.*, ([0-9.]*) .*/\1/p`
- num=${num:-0}
- if (( "$num" > "$thresh" )); then
- eval "$*"
- else
- sleep 1
- fi
+ num=`acpi -t|sed -nr 's/.*, ([0-9.]*) .*/\1/p`
+ num=${num:-0}
+ if (( "$num" > "$thresh" )); then
+ eval "$cmd"
+ else
+ sleep 1
+ fi
done