Advertisement
mogra

Keep Laptop asleep in bag.

Nov 13th, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.20 KB | None | 0 0
  1. #!/bin/bash
  2. # init
  3.  
  4. grep -q closed /proc/acpi/button/lid/LID/state
  5. if [ $? = 0 ]; then
  6.     grep -q 0 /sys/class/power_supply/AC/online
  7.  
  8.     if [ $? = 0 ]; then
  9.         sudo pm-suspend
  10.     fi
  11. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement