2021-10-25 02:08:06 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# This is an example shell script showing how to consume a ntfy.sh topic using
|
|
|
|
# a simple script. The notify-send command sends any arriving message as a desktop notification.
|
|
|
|
|
2021-11-29 20:34:29 +00:00
|
|
|
TOPIC_URL=ntfy.sh/mytopic
|
|
|
|
|
2021-10-25 02:08:06 +00:00
|
|
|
while read msg; do
|
2021-11-03 01:15:21 +00:00
|
|
|
[ -n "$msg" ] && notify-send "$msg"
|
2021-11-29 20:34:29 +00:00
|
|
|
done < <(stdbuf -i0 -o0 curl -s $TOPIC_URL/raw)
|