Search found 2 matches

by isene
09 Sep 2012, 00:04
Forum: Linux On My Samsung
Topic: Possible to set temp threshold for fan? (NP900X4B)
Replies: 1
Views: 3096

Re: Possible to set temp threshold for fan? (NP900X4B)

As for now, I run this script from my .xsession upon login:

Code: Select all

#!/bin/sh
while true; do
      if [ `cat /sys/class/thermal/thermal_zone0/temp` -lt 65000 ]; then
            samsung-tools -q -c silent
      fi
      sleep 5
done
by isene
08 Sep 2012, 08:51
Forum: Linux On My Samsung
Topic: Possible to set temp threshold for fan? (NP900X4B)
Replies: 1
Views: 3096

Possible to set temp threshold for fan? (NP900X4B)

I would like the fan to be turned off (silent) until the CPU temperature reaches 60 degrees C. Is this possible? My current solution is to issue the command "samsung-tools -c silent" when the fan turns on (which it does pretty often. I could write a cron job for a script that checks the te...