Files
Workstation/test.py
ducoterra 494e91f293 Split fedora and manjaro playbooks
Split playbooks to better accomodate development of both.
2022-04-03 16:48:30 -04:00

11 lines
191 B
Python

import desktop_notify
import asyncio
async def test():
notify = desktop_notify.aio.Notify('summary', 'body')
await notify.show()
if __name__ == "__main__":
asyncio.run(test())