18 lines
292 B
Python
18 lines
292 B
Python
#!/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()
|