Add debug console launcher
This commit is contained in:
parent
5fb6dc4205
commit
7006a6453d
2 changed files with 17 additions and 0 deletions
|
|
@ -11,3 +11,9 @@ import sys
|
||||||
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
||||||
sys.path.append(os.getcwd())
|
sys.path.append(os.getcwd())
|
||||||
import wk # pylint: disable=wrong-import-position
|
import wk # pylint: disable=wrong-import-position
|
||||||
|
wk.std.print_colored(
|
||||||
|
(wk.cfg.main.KIT_NAME_FULL, ': ', 'Debug Console'),
|
||||||
|
('GREEN', None, 'YELLOW'),
|
||||||
|
sep='',
|
||||||
|
)
|
||||||
|
print('')
|
||||||
|
|
|
||||||
|
|
@ -246,6 +246,17 @@ LAUNCHERS = {
|
||||||
'L_PATH': 'PuTTY',
|
'L_PATH': 'PuTTY',
|
||||||
'L_ITEM': 'PUTTY.EXE',
|
'L_ITEM': 'PUTTY.EXE',
|
||||||
},
|
},
|
||||||
|
'WizardKit Debug Console': {
|
||||||
|
'L_TYPE': 'Executable',
|
||||||
|
'L_PATH': 'ConEmu',
|
||||||
|
'L_ITEM': 'ConEmu.exe',
|
||||||
|
'L_ARGS': r'-Dir %bin%\Scripts -Run ..\Python\x%ARCH%\python.exe -i embedded_python_env.py',
|
||||||
|
'L_ELEV': 'True',
|
||||||
|
'Extra Code': [
|
||||||
|
'set ARCH=32',
|
||||||
|
'if /i "%PROCESSOR_ARCHITECTURE%" == "AMD64" set "ARCH=64"',
|
||||||
|
],
|
||||||
|
},
|
||||||
'WizTree': {
|
'WizTree': {
|
||||||
'L_TYPE': 'Executable',
|
'L_TYPE': 'Executable',
|
||||||
'L_PATH': 'WizTree',
|
'L_PATH': 'WizTree',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue