diff options
author | Patrick Simianer <p@simianer.de> | 2014-10-09 20:44:15 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-10-09 20:44:15 +0100 |
commit | ca41eddfdc979955105cce572e659941544d6f6d (patch) | |
tree | bf446902e8323e58c6fc14dce808b9719da7d3f6 /temp_cpu | |
parent | 0aae427eb3838297f6e204c2961739ef834762cf (diff) |
alles neu macht der mai
Diffstat (limited to 'temp_cpu')
-rwxr-xr-x | temp_cpu | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/temp_cpu b/temp_cpu new file mode 100755 index 0000000..90b2bc9 --- /dev/null +++ b/temp_cpu @@ -0,0 +1,15 @@ +#!/bin/zsh + +MAX_TEMP=$1 + +for i in \ + /sys/devices/pci0000:00/0000:00:18.3/temp1_input \ + /sys/devices/pci0000:00/0000:00:19.3/temp1_input \ + /sys/devices/pci0000:00/0000:00:1a.3/temp1_input \ + /sys/devices/pci0000:00/0000:00:1b.3/temp1_input; do + TEMP=$(cat $i) + if [ $TEMP -gt $MAX_TEMP ]; then + logger "Some CPU temp @$TEMP (/1000)!" + fi +done + |