Updated Notify_xbmc (markdown)

master
Chris Caron 2020-08-03 09:50:23 -04:00
parent 8921ba031e
commit de8c616bc4
1 changed files with 4 additions and 2 deletions

@ -25,12 +25,14 @@ Valid syntaxes are as follows:
Send a XBMC notification to our server listening on port 8080:
```bash
# Assuming our {hostname} is xbmc.server.local
apprise xbmc://xbmc.server.local
apprise -vv -t "Test Message Title" -b "Test Message Body" \
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:
# Assuming our {hostname} is xbmc.server.local
# Assuming our {userid} is xbmc
# Assuming our {password} is xbmc
apprise xbmc://xbmc:xbmc@xbmc.server.local
apprise -vv -t "Test Message Title" -b "Test Message Body" \
xbmc://xbmc:xbmc@xbmc.server.local
```