Hi,
Why the hell is the following script run after hibernation but not after resume from suspension?
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