diff options
Diffstat (limited to 'monitor_cpu_temp')
-rwxr-xr-x | monitor_cpu_temp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/monitor_cpu_temp b/monitor_cpu_temp deleted file mode 100755 index 90b2bc9..0000000 --- a/monitor_cpu_temp +++ /dev/null @@ -1,15 +0,0 @@ -#!/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 - |