#!/bin/bash

if [ "${1}" == "pre" ]; then
  # Do the thing you want before suspend here
	systemctl stop bluetooth.service
elif [ "${1}" == "post" ]; then
  # Do the thing you want after resume here
	systemctl start bluetooth.service
fi
