#!/bin/sh

. "${PM_FUNCTIONS}"

case "$1" in
  hibernate|suspend)
    rfkill block bluetooth
   ;;
  thaw|resume)
    rfkill unblock bluetooth
    ;;
  *)
    ;;
esac