mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 13:52:15 +01:00
12 lines
232 B
Python
12 lines
232 B
Python
import os
|
|
import sys
|
|
import pype_tray
|
|
|
|
app = pype_tray.PypeTrayApplication()
|
|
if os.name == "nt":
|
|
import ctypes
|
|
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(
|
|
u"pype_tray"
|
|
)
|
|
|
|
sys.exit(app.exec_())
|