从睡眠模式返回时激活脚本

从睡眠模式返回时激活脚本

我用它来监测我的体温。

有没有办法让它在我的计算机从睡眠模式(或挂起模式)恢复后运行?

Cpu_LogFile="/home/andy/bin/CPU_Fan_Info.txt"

date +"%Y-%m-%d-%H:%M:%S" >> $Cpu_LogFile
sensors -f | grep "temp4" >> $Cpu_LogFile
sensors -f | grep "fan1" >>  $Cpu_LogFile

我在这里读到了信息。

http://manpages.ubuntu.com/manpages/precise/man8/pm-action.8.html

我在 /etc/pm/sleep.d/ 中有这个,但是当计算机从睡眠状态恢复时它不会运行。

#!/bin/bash

case "$1" in
suspend|hibernate)

    ;;
resume|thaw)
    /bin/bash /home/andy/bin/CPU_FAN_INFO.sh
    ;;
esac

相关内容