Updated config (markdown)

master
Chris Caron 2019-12-12 12:51:15 -05:00
parent 68325c410b
commit 3a5a4e0eef
1 changed files with 4 additions and 4 deletions

@ -81,12 +81,12 @@ a = Apprise()
a.add('mailto://user:pass@hotmail.com', tag='email') a.add('mailto://user:pass@hotmail.com', tag='email')
a.add('gnome://', tag='desktop') a.add('gnome://', tag='desktop')
# Send off our all of our notifications (v0.8.0 or less) # This command actually won't notify anything because tags were associated
# with our URLs
a.notify("A message!", title="An Optional Title") a.notify("A message!", title="An Optional Title")
# For Apprise v0.8.1 or newer, the following will notify everything: # This however will notify all of them. It uses the special keyword 'all'
# The 'all' is a system level keyword to notify everything disreguarding # which disregards any tag names set.
# tag assignments:
a.notify("A message!", title="An Optional Title", tag="all") a.notify("A message!", title="An Optional Title", tag="all")
# To notify specific URLs that were loaded, you can match them by their # To notify specific URLs that were loaded, you can match them by their