58 lines
1.6 KiB
Python
58 lines
1.6 KiB
Python
#!/usr/bin/python3
|
|
|
|
# Python imports
|
|
import argparse
|
|
import faulthandler
|
|
import traceback
|
|
from setproctitle import setproctitle
|
|
|
|
import tracemalloc
|
|
tracemalloc.start()
|
|
|
|
# Lib imports
|
|
|
|
# Application imports
|
|
from __builtins__ import *
|
|
from app import Application
|
|
|
|
|
|
|
|
def main():
|
|
setproctitle(f'{APP_NAME}')
|
|
settings_manager.set_start_load_time()
|
|
|
|
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()
|
|
|
|
app = Application()
|
|
app.run()
|
|
|
|
|
|
|
|
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.")
|
|
|
|
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.")
|
|
|
|
# Read arguments (If any...)
|
|
args, unknownargs = parser.parse_known_args()
|
|
settings_manager.set_starting_args( args, unknownargs )
|
|
|
|
try:
|
|
faulthandler.enable() # For better debug info
|
|
main()
|
|
except Exception as e:
|
|
traceback.print_exc()
|
|
quit() |