7 lines
149 B
Python
Executable File
7 lines
149 B
Python
Executable File
#!/usr/bin/env python
|
|
from gui.gui import Gui as gui
|
|
from sys import argv
|
|
|
|
do_debug = "--debug" in argv
|
|
|
|
gui(theme='DarkGrey11', debug_mode=do_debug) |