Handle certain enteries as key combo

This commit is contained in:
2025-12-06 03:38:41 -06:00
parent c969c6056b
commit ae1131c2d7
4 changed files with 67 additions and 41 deletions

View File

@@ -34,9 +34,9 @@ class MissingConfigError(Exception):
class Pyautogui_Controller(ControlMixin):
def __init__(self):
self.isCtrlOn = False
self.isShiftOn = False
self.isAltOn = False
self.isCtrlOn = False
self.isShiftOn = False
self.isAltOn = False
@@ -57,7 +57,7 @@ keys_json = {
},
"row4": {
"pKeys": ['z', 'x', 'c', 'v', 'b', 'n', 'm', ',', '.', '?'],
"sKeys": ['', '', '\\<', '>', '[', ']', '(', ')', '{', '}']
"sKeys": ['', '', '<|shift+,', '>', '[', ']', '(', ')', '{', '}']
},
}
}