BirdNET-stream/daemon/notify/apprise.sh

13 lines
233 B
Bash
Raw Normal View History

2022-08-16 05:21:53 +02:00
#! /usr/bin/env bash
send() {
message=$1
if [ -z "$message" ]; then
echo "No message to send"
exit 1
fi
apprise -vv -t "BirdNET-stream" -b "$message" \
--config "./config/apprise.conf"
}
send $1