updated on Wed Jan 18 16:10:53 UTC 2012
[aur-mirror.git] / x6-ultrabase-sleep-fix / 99-x61-docking
blob95cfa44cd72f4f6398d2ad1fb3ea398250fafa49
1 #!/bin/sh
2 . "${PM_FUNCTIONS}"
4 case $1 in
5 hibernate|suspend)
6 echo 1 > /sys/devices/platform/dock.0/undock
7 ;;
9 thaw|resume)
10 # should dock automatically
13 *) exit $NA
15 esac