#!/bin/bash

. "${PM_FUNCTIONS}"

case "$1" in
	thaw|resume)
		sleep 5
		service bluetooth restart
		;;
esac

