Python-With-Gtk-Template/src/__main__.py

54 lines
1.5 KiB
Python
Raw Normal View History

2020-05-08 00:07:33 +00:00
#!/usr/bin/python3
# Python imports
import argparse
import faulthandler
import traceback
2020-05-08 00:07:33 +00:00
from setproctitle import setproctitle
2022-01-23 22:56:27 +00:00
import tracemalloc
tracemalloc.start()
# Lib imports
2020-05-08 00:07:33 +00:00
# Application imports
from __builtins__ import *
2022-03-03 22:37:29 +00:00
from app import Application
2020-05-08 00:07:33 +00:00
2023-01-29 06:06:52 +00:00
def main(args, unknownargs):
setproctitle(f'{app_name}')
2022-02-25 23:53:58 +00:00
if args.debug == "true":
settings_manager.set_debug(True)
if args.trace_debug == "true":
settings_manager.set_trace_debug(True)
settings_manager.do_dirty_start_check()
Application(args, unknownargs)
2020-05-08 00:07:33 +00:00
2022-01-23 22:56:27 +00:00
if __name__ == "__main__":
''' Set process title, get arguments, and create GTK main thread. '''
parser = argparse.ArgumentParser()
# Add long and short arguments
parser.add_argument("--debug", "-d", default="false", help="Do extra console messaging.")
parser.add_argument("--trace-debug", "-td", default="false", help="Disable saves, ignore IPC lock, do extra console messaging.")
parser.add_argument("--no-plugins", "-np", default="false", help="Do not load plugins.")
2022-10-23 04:26:13 +00:00
parser.add_argument("--new-tab", "-nt", default="false", help="Opens a 'New Tab' if a handler is set for it.")
parser.add_argument("--file", "-f", default="default", help="JUST SOME FILE ARG.")
2022-10-23 04:26:13 +00:00
# Read arguments (If any...)
args, unknownargs = parser.parse_known_args()
try:
faulthandler.enable() # For better debug info
main(args, unknownargs)
2020-05-08 00:07:33 +00:00
except Exception as e:
2022-01-23 22:56:27 +00:00
traceback.print_exc()
quit()