#!/bin/sh # case "$1" in hibernate|suspend) # stop bluetooth on sleep /etc/init.d/bluetooth stop ;; thaw|resume) # start bluetooth on wake /etc/init.d/bluetooth start ;; *) exit $NA ;; esac