Isolate window capture code
This commit is contained in:
@@ -648,7 +648,12 @@ def run(read_from=None,
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
if read_from == 'screencapture' and sys.platform not in ('darwin', 'win32'):
|
if read_from == 'screencapture' and sys.platform not in ('darwin', 'win32'):
|
||||||
|
window_capture_available = False
|
||||||
|
try:
|
||||||
active_window_name = pywinctl.getActiveWindowTitle()
|
active_window_name = pywinctl.getActiveWindowTitle()
|
||||||
|
window_capture_available = True
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
logger.configure(handlers=[{'sink': sys.stderr, 'format': config.get_general('logger_format')}])
|
logger.configure(handlers=[{'sink': sys.stderr, 'format': config.get_general('logger_format')}])
|
||||||
|
|
||||||
@@ -876,6 +881,9 @@ def run(read_from=None,
|
|||||||
windows_window_tracker.start()
|
windows_window_tracker.start()
|
||||||
logger.opt(ansi=True).info(f'Selected window: {window_title}')
|
logger.opt(ansi=True).info(f'Selected window: {window_title}')
|
||||||
else:
|
else:
|
||||||
|
if not window_capture_available:
|
||||||
|
raise ValueError('Window capture is not available on your setup')
|
||||||
|
|
||||||
sct = mss.mss()
|
sct = mss.mss()
|
||||||
window_title = None
|
window_title = None
|
||||||
window_titles = pywinctl.getAllTitles()
|
window_titles = pywinctl.getAllTitles()
|
||||||
|
|||||||
Reference in New Issue
Block a user