From 7ec941288862833daa80c41f9e86e0fb0a551f5e Mon Sep 17 00:00:00 2001 From: lead2gold Date: Sun, 1 Jul 2018 12:54:56 -0400 Subject: [PATCH] Created Notify_windows (markdown) --- Notify_windows.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Notify_windows.md diff --git a/Notify_windows.md b/Notify_windows.md new file mode 100644 index 0000000..2937485 --- /dev/null +++ b/Notify_windows.md @@ -0,0 +1,22 @@ +## Microsoft Windows Notifications +* **Source**: n/a +* **Icon Support**: Yes +* **Message Format**: Text +* **Message Limit**: 250 Characters per message + +Display notifications right inside of your windows application. This only works if you're sending the notification to the same windows system you're currently accessing. Hence this notification can not be sent from one PC to another. + +### Syntax +There are currently no options you can specify for this kind of notification, so it's really easy to reference: +* **windows**:// + + +### Parameter Breakdown +There are no parameters at this time. + +#### Example +Assuming we're on a Windows computer, we can send a Windows Notification to ourselves: +```bash +# Send ourselves a windows notification +apprise windows:// +``` \ No newline at end of file