ICEYOU/main.py

20 lines
454 B
Python

"""ICEYOU entry point - launches the system tray application."""
import sys
from pathlib import Path
# Add src to path for development
sys.path.insert(0, str(Path(__file__).parent / "src"))
from iceyou.tray_app import TrayApp
def main():
print("Starting ICEYOU Personal Monitor...")
print("A system tray icon will appear. Right-click for options.")
app = TrayApp()
app.run()
if __name__ == "__main__":
main()