Is there a way to call a script when Ubuntu wakes up from suspend or hibernate mode?

13

4

I have a little shell script that I run automatically when I log on to my Ubuntu machine; it will set the parameters of my touchpad the way I like it. However, when Ubuntu wakes up after being hibernated or suspended, my touchpad reverts to its default state and I have to run my little script again.

Is there some way I can automate this process thus that the script will be magically called when the machine wakes up again?

innaM

Posted 2009-10-25T18:23:49.047

Reputation: 9 208

Answers

14

First of all, you have found a bug. The user is not supposed to bother with the touchpad configuration being lost after resume. You go to Launchpad and report this bug, so that it can be properly identified and fixed.

Then, after that, go to /etc/pm/sleep.d/ and add a script that will be executed before and after suspending or hibernating. The script receives a single command-line parameter "suspend", "resume", "hibernate" or "thaw", it should inspect this argument and take the appropriate action. There should be at least one other script in that directory (99laptop-mode) that you can use as a reference.

Juliano

Posted 2009-10-25T18:23:49.047

Reputation: 2 492

Here's a complete example of the script: ubutnuforums.

– Adobe – 2012-06-12T12:39:16.683

I did create the script and I made sure that it is being run. But it doesn't seem to have any effect. I guess this is due to that bug, though. – innaM – 2009-10-25T20:59:59.543

3Perhaps, the touchpad is reinitialized after the resume scripts are run... losing its configuration. – Juliano – 2009-10-25T21:59:36.207

I'd like to add that this facilities are documented in man pm-action which, btw, says that the user supplied scripts should be named 00 - 49. – mnicky – 2013-11-20T16:38:47.043