home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / etc / acpi / tosh-wireless.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  2007-03-29  |  208 b   |  13 lines

  1. #!/bin/bash
  2. # Find and enable/disable wireless devices
  3.  
  4. . /usr/share/acpi-support/state-funcs
  5.  
  6. toggleAllWirelessStates;
  7.  
  8. if isAnyWirelessPoweredOn; then
  9.     toshset -bluetooth on
  10. else
  11.     toshset -bluetooth off
  12. fi
  13.