initial release: GizerBridge v1.0

This commit is contained in:
2026-05-22 12:27:27 +02:00
commit b2e4a8b46a
23 changed files with 2773 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env python3
import sys
import os
# Ensure the app directory is on the path regardless of how it's launched
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from tray_app import App
def main():
app = App()
app.run()
if __name__ == "__main__":
main()