从睡眠状态返回时不执行脚本

从睡眠状态返回时不执行脚本

我在 /usr/lib/pm-utils/sleep.d/ 中有这个,但是从睡眠状态返回时它不会执行。

#!/bin/sh

PATH=/usr/bin/:/usr/share/sounds/

case "$1" in
    resume|thaw)
       amixer -D pulse sset Master 60%
        cvlc --play-and-exit /usr/share/sounds/My_Sounds/Short_doorbell.wav
    ;;
    suspend|hibernate)
       
    ;;
esac

exit 0

我使用键盘上的睡眠键。(半月)

我究竟做错了什么?

答案1

你确定pm-utils是正确的东西吗?自从 16.10(我认为)以来,它就被 取代了systemd-sleep,它从 读取其“钩子” /usr/lib/systemd/system-sleep

相关内容