mirror of
https://github.com/onyx-and-iris/nvda-voicemeeter.git
synced 2026-04-07 18:03:35 +00:00
15 lines
255 B
Python
15 lines
255 B
Python
import subprocess as sp
|
|
import time
|
|
|
|
from .cdll import NVDA_PATH
|
|
from .window import request_window_object as draw
|
|
|
|
|
|
def launch(delay=1):
|
|
if NVDA_PATH:
|
|
sp.Popen([NVDA_PATH], shell=True)
|
|
time.sleep(delay)
|
|
|
|
|
|
__ALL__ = ["launch", "draw"]
|