Split fedora and manjaro playbooks

Split playbooks to better accomodate development of both.
This commit is contained in:
ducoterra
2022-04-03 16:48:30 -04:00
parent 2ca110134a
commit 494e91f293
191 changed files with 1195 additions and 1314 deletions

10
test.py Normal file
View File

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