Updated Notify_windows (markdown)

master
Chris Caron 2022-07-03 10:03:09 -04:00
parent c3b441ce5c
commit 12edfd548e
1 changed files with 7 additions and 1 deletions

@ -26,5 +26,11 @@ Assuming we're on a Windows computer, we can send a Windows Notification to ours
```bash
# Send ourselves a windows notification
apprise -vv -t "Test Message Title" -b "Test Message Body" \
windows://
"windows://"
```
Here is an example where we shorten the duration the popup stays active for:
```bash
# Send ourselves a windows notification
apprise -vv -b "A 5 second popup" "windows://?duration=5"
```