comms_pushbullet.sh 428 B

1234567891011
  1. #!/bin/bash
  2. # LGSM comms_pushbullet.sh function
  3. # Author: Daniel Gibbs
  4. # Website: https://gameservermanagers.com
  5. lgsm_version="140516"
  6. # Description: Notifications using pushbullet.
  7. curl -u """${pushbullettoken}"":" -d type="note" -d body="${commsbody}" -d title="${commssubject}" 'https://api.pushbullet.com/v2/pushes' >/dev/null 2>&1
  8. fn_print_ok_nl "Sent Pushbullet notification"
  9. fn_scriptlog "Sent Pushbullet notification"