-
Notifications
You must be signed in to change notification settings - Fork 2
/
RBMM_output.json
102 lines (102 loc) · 2.83 KB
/
RBMM_output.json
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[
{
"name": "Windows Built-in Screen Magnifier",
"id": "com.microsoft.windows.magnifier",
"contexts": {
"OS": [
{
"id": "win32",
"version": ">=5.0"
}
]
},
"settingsHandlers": [
{
"type": "gpii.windows.registrySettingsHandler",
"options": {
"hKey": "HKEY_CURRENT_USER",
"path": "Software\\Microsoft\\ScreenMagnifier"
},
"capabilities": [
"applications.com\\.microsoft\\.windows\\.magnifier.id",
"display.screenEnhancement.screenMagnification.applications.com\\.microsoft\\.windows\\.magnifier.name"
],
"capabilitiesTransformations": {
"Magnification": {
"expander": {
"type": "gpii.transformer.scaleValue",
"inputPath": "display.screenEnhancement.magnification",
"outputPath": "value",
"factor": 100.0
},
"dataType": {
"expander": {
"type": "fluid.model.transform.literalValue",
"value": "REG_DWORD"
}
}
},
"Invert": {
"expander": {
"type": "fluid.model.transform.value",
"inputPath": "display.screenEnhancement.invertImages",
"outputPath": "value"
},
"dataType": {
"expander": {
"type": "fluid.model.transform.literalValue",
"value": "REG_DWORD"
}
}
},
"expander": {
"type": "fluid.model.transform.valueMapper",
"inputPath": "display.screenEnhancement.tracking",
"options": {
"mouse": {
"outputPath": "FollowMouse",
"outputValue": {
"value": 1,
"dataType": "REG_DWORD"
}
},
"caret": {
"outputPath": "FollowCaret",
"outputValue": {
"value": 1,
"dataType": "REG_DWORD"
}
},
"focus": {
"outputPath": "FollowFocus",
"outputValue": {
"value": 1,
"dataType": "REG_DWORD"
}
}
}
}
},
"settings": {
"Invert": true
}
}
],
"lifecycleManager": {
"start": [
"setSettings",
{
"type": "gpii.launch.exec",
"command": "${{environment}.SystemRoot}\\System32\\Magnify.exe"
}
],
"stop": [
{
"type": "gpii.launch.exec",
"command": "${{environment}.SystemRoot}\\System32\\taskkill.exe /f /im Magnify.exe"
},
"restoreSettings"
]
}
}
]