Add an option to capture non active (but maximized) windows

This commit is contained in:
AuroraWright
2024-01-28 11:12:45 +01:00
parent b7b87beaa0
commit d3af723b44
3 changed files with 20 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
import os
import configparser
class Config:
has_config = False
__general_config = {}
@@ -20,7 +21,8 @@ class Config:
'notifications': False,
'screen_capture_monitor': 1,
'screen_capture_coords': '',
'screen_capture_delay_secs': 3
'screen_capture_delay_secs': 3,
'screen_capture_only_active_windows': True
}
def __parse(self, value):