-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcmds
More file actions
77 lines (63 loc) · 5.18 KB
/
cmds
File metadata and controls
77 lines (63 loc) · 5.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
activating_jarvis_cmds: list = ['hi', 'hi jarvis', 'jarvis', 'start jarvis', 'jarvis start']
deactivating_jarvis_cmds: list = ['jarvis close', 'close jarvis', 'jarvis stop', 'stop jarvis']
typing_start_cmds: list = ['start typing', 'typing start', 'activate typing', 'typing activate']
typing_stop_cmds: list = ['stop typing', 'typing stop', 'deactivate typing', 'typing deactivate']
press_key_cmds: list = ['press', 'press key', 'key press']
hold_key_cmds: list = ['hold', 'holdkey', 'hold key', 'keydown']
release_key_cmds: list = ['release', 'releasekey', 'release key']
open_app_cmds: list = ['open', 'start', 'run']
close_app_cmds: list = ['close', 'exit', 'terminate']
desktop_mode_cmds: list = ['set desktop mode', 'go to desktop mode', 'desktop mode', 'goto desktop mode',
'start desktop mode']
normal_mode_cmds: list = ['set normal mode', 'go to normal mode', 'normal mode', 'goto normal mode',
'stop desktop mode']
search_cmds: list = [
'search', 'find', 'windows search', 'window search', 'search windows',
'search window', 'search by windows', 'search by window'
]
windows_search_enable_cmds: list = ['open by search', 'open by windows', 'open by windows search']
windows_search_disable_cmds: list = ['stop by search', 'stop by windows', 'stop by windows search']
WindowsAppController_set_data = {
'minimize_wind': ['minimize windows', 'minimize window', 'minimize active windows', 'minimize active window',
'minimize opened windows', 'minimize opened window', 'minimise windows', 'minimise window',
'minimise active windows', 'minimise active window',
'minimise opened windows', 'minimise opened window', ],
'minimize_all_wind': ['minimize all windows', 'minimize all window', 'minimise all windows',
'minimise all window'],
'maximize_wind': ['maximize windows', 'maximize window', 'maximize active windows', 'maximize active window',
'maximize opened windows', 'maximize opened window', 'maximise windows', 'maximise window',
'maximise active windows', 'maximise active window',
'maximise opened windows', 'maximise opened window', 'full windows', 'full window',
'full screen', 'full screen windows', 'full screen window'],
'maximize_all_wind': ['maximize all windows', 'maximize all window', 'maximise all windows',
'maximise all window',
'all full screen windows', 'all full screen window'],
'close_wind': ['close present windows', 'close present window', 'close active windows', 'close active window',
'close opened windows', 'close opened window'],
'close_all_wind': ['close all windows', 'close all window'],
'shift_windows': ['shift windows', 'shift window', 'next window', 'next windows', 'goto next window',
'goto next windows', 'to next window', 'to next windows'],
'move_wind_left': ['move windows left', 'move window left', 'move windows to left', 'move window to left'],
'move_wind_right': ['move windows right', 'move window right', 'move windows to right', 'move window to right']
}
DesktopSystemController_set_data = {
"set brightness": ['set brightness level', 'set brightness to ', 'set brightness',
'change brightness in windows', 'brightness level', 'brightness to level',
'set brightness to level'],
"incr_decre brightness": ['increase brightness', 'increase brightness level',
'increase brightness in windows', 'increase brightness in windows',
'decrease brightness', 'decrease brightness level',
'decrease brightness in windows', 'decrease brightness in windows'],
"set volume": ['set volume level', 'set volume to ', 'set volume', 'set volume',
'change volume in windows', 'adjust volume', 'reduce volume'],
"incr_decre volume": ['increase volume', 'increase volume level', 'increase volume in windows',
'increase volume in windows', 'decrease volume', 'decrease volume level',
'decrease volume in windows', 'decrease volume in windows'],
"shift windows right": ['shift windows right', 'shift tab right', 'shift frame right', 'shift right tab',
'move to right windows', 'move to right windows', 'move to right frame',
'move to next tab', 'next windows', 'move next tab', 'move to next windows',
'move next windows'],
"shift windows left": ['shift windows left', 'shift tab left', 'shift frame left', 'shift left tab',
'move to left windows', 'move to left windows', 'move to left frame', 'move to past tab',
'move past tab', 'move to past windows', 'move past windows'],
}