Windows Notifications Staying in Notification Center
Author: WolfmythsCreated Jun 25, 2023Updated Jul 2, 2023
Labelsquestion
:question: Question Are windows notifications supposed to be removed from the notification center after the duration ends?
This may happen with other desktop services but I'm only able to test on windows, is there something I'm missing or is this a feature to be implemented/bug?
I've tried threading and async too.
from apprise import Apprise
def main():
notify = Apprise()
notify.add('windows://')
notify.notify(body='body', title='title')
main()Source: caronc/apprise