manuskript/bin/manuskript
TheJackiMonster 988fa62d61
Fix issues with menu events and adjusted startup script
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
2023-03-01 23:32:03 +01:00

19 lines
367 B
Python
Executable file

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import sys
realpath = os.path.realpath(__file__)
app_path = os.path.join(os.path.dirname(realpath), '..')
sys.path.insert(1, app_path)
os.chdir(app_path)
from manuskript.ui import MainWindow
path = os.path.join(os.getcwd(), "sample-projects/book-of-acts")
window = MainWindow(path + ".msk")
window.run()