Add pystray tray applet wiring and [tray] extra

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Luna 2026-07-03 07:37:39 -07:00
parent 2fce7d412a
commit 1451cf7d58
4 changed files with 149 additions and 0 deletions

View file

@ -0,0 +1,8 @@
# SPDX-License-Identifier: GPL-3.0-or-later
"""`python -m enodia_sentinel.tray` entry point."""
import sys
from .app import main
if __name__ == "__main__":
sys.exit(main())