Set desktop file and app name

This commit is contained in:
Toast 2025-05-06 20:19:00 +02:00
parent 02621b79aa
commit 010deddc8e

View file

@ -11,6 +11,8 @@ from PySide6.QtQml import QQmlApplicationEngine
def main():
"""Initializes and manages the application execution"""
app: QGuiApplication = QGuiApplication(sys.argv)
app.desktopFileName = "xyz.xyz.toast003.leek"
app.applicationName = "Leek"
engine = QQmlApplicationEngine()
"""Needed to close the app with Ctrl+C"""