mirror of
https://github.com/DYefremov/DemonEditor.git
synced 2026-01-19 14:03:17 +01:00
17 lines
381 B
Python
Executable File
17 lines
381 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
try:
|
|
from Cocoa import NSBundle
|
|
except ImportError as e:
|
|
print(e)
|
|
else:
|
|
ns_bundle = NSBundle.mainBundle()
|
|
if ns_bundle:
|
|
ns_bundle = ns_bundle.localizedInfoDictionary() or ns_bundle.infoDictionary()
|
|
if ns_bundle:
|
|
ns_bundle["CFBundleName"] = "DemonEditor"
|
|
|
|
from app.ui.main_app_window import start_app
|
|
|
|
start_app()
|