Quantcast
Viewing all articles
Browse latest Browse all 36162

pm-utils script working after hibernation but not suspension

Hi,

Why the hell is the following script run after hibernation but not after resume from suspension?

Code:

#!/bin/sh
# /etc/pm/sleep.d/90_on_resume

case $1 in
    resume)
        /home/gebbel/.run
        ;;
    thaw)
        /home/gebbel/.run
        ;;
    *)
        /home/gebbel/.run
        ;;
esac


Viewing all articles
Browse latest Browse all 36162

Trending Articles