implement launch() function.

Allows launching nvda program at start.
This commit is contained in:
2023-08-23 16:11:32 +01:00
parent d39cc35e79
commit bf66a1d070
3 changed files with 48 additions and 2 deletions

View File

@@ -1 +1,12 @@
from .window import request_window_object as build
import subprocess as sp
from .cdll import NVDA_PATH
from .window import request_window_object as draw
def launch():
if NVDA_PATH:
sp.Popen([NVDA_PATH], shell=True)
__ALL__ = ["launch", "draw"]