You are not logged in.
Pages: 1
Hello,
I created a new hook based on this guide: https://wiki.archlinux.org/index.php/Pm … _own_hooks
#!/bin/sh
case $1 in
hibernate|suspend)
rc.d stop optimus
;;
resume|thaw)
rc.d start optimus
;;
esacI placed it in /etc/pm/sleep.d and made it executable.
However, after using pm-suspend it does not run my script. /var/log/pm-suspend.log does not list up my new hook either.
What am I missing? Thx!
Last edited by Jankosevic (2012-03-15 13:43:46)
Offline
Pages: 1