home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / lib / pm-utils / power.d / laptop-mode < prev    next >
Encoding:
Text File  |  2009-03-30  |  293 b   |  13 lines

  1. #!/bin/sh
  2.  
  3. LAPTOP_MODE='/usr/sbin/laptop_mode'
  4.  
  5. if [ -x $LAPTOP_MODE ]; then
  6.     [ -f /etc/default/laptop-mode ] && . /etc/default/laptop-mode
  7.     [ -f /etc/default/acpi-support ] && . /etc/default/acpi-support
  8.     if [ x$ENABLE_LAPTOP_MODE = xtrue ]; then
  9.        $LAPTOP_MODE auto
  10.     fi
  11. fi
  12.  
  13.