Updated Notify_xbmc (markdown)

master
Chris Caron 2023-07-01 17:19:52 -04:00
parent 41fcab562b
commit 6da6fb9e4f
1 changed files with 2 additions and 2 deletions

@ -26,7 +26,7 @@ Send a XBMC notification to our server listening on port 8080:
```bash
# Assuming our {hostname} is xbmc.server.local
apprise -vv -t "Test Message Title" -b "Test Message Body" \
xbmc://xbmc.server.local
"xbmc://xbmc.server.local"
# You may have a password and user protecting your xbmc server; so the
# following is another way to hit your xbmc server:
@ -34,5 +34,5 @@ apprise -vv -t "Test Message Title" -b "Test Message Body" \
# Assuming our {userid} is xbmc
# Assuming our {password} is xbmc
apprise -vv -t "Test Message Title" -b "Test Message Body" \
xbmc://xbmc:xbmc@xbmc.server.local
"xbmc://xbmc:xbmc@xbmc.server.local"
```