恢复脚本不执行任何操作

恢复脚本不执行任何操作

该脚本位于 /etc/pm/sleep.d/ 中。

我以此为指南。我使用的是 Ubuntu Mate 18.04。

https://superuser.com/questions/733333/how-do-i-run-commands-on-suspend-return-from-suspend

执行位已设置。

当我的计算机恢复时,什么也没有发生。

#!/bin/sh

case "$1" in
suspend|hibernate)
    #actions to take on suspend or hibernate
    ;;
resume|thaw)
    #other actions to trigger on resume
    gxmessage -fg red -font  'sans 30' -timeout 3  ' Computer has now resumed from suspend state.'
    ;;
esac

我在系统日志中发现了这一点。

Mar 31 02:00:51 7 dbus-daemon[932]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.95' (uid=0 pid=16760 comm="geany /etc/pm/sleep.d/On_Resume.sh " label="unconfined

我没有 /var/log/pm-suspend?

相关内容