-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
63 lines (63 loc) · 1.35 KB
/
config.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
{
"a-comment": "COMMENT: Should the application start if the user is not an admin (The hook might not work correctly if the user is not an admin)",
"allowNonAdmin": true,
"s-comment": "COMMENT: Should the size be pixel based or percentage based",
"sizeByPixel": false,
"kb-comment": "COMMENT: Keybindings for the different actions",
"keyBindings": {
"moveRight": {
"ctrl": true,
"alt": true,
"shift": false,
"key": "VK_NUMPAD6"
},
"moveLeft": {
"ctrl": true,
"alt": true,
"shift": false,
"key": "VK_NUMPAD4"
},
"moveUp": {
"ctrl": true,
"alt": true,
"shift": false,
"key": "VK_NUMPAD8"
},
"moveDown": {
"ctrl": true,
"alt": true,
"shift": false,
"key": "VK_NUMPAD2"
},
"toggleMaximize": {
"ctrl": true,
"alt": true,
"shift": true,
"key": "VK_NUMPAD8"
},
"splitLeft": {
"ctrl": true,
"alt": true,
"shift": true,
"key": "VK_NUMPAD4"
},
"splitRight": {
"ctrl": true,
"alt": true,
"shift": true,
"key": "VK_NUMPAD6"
},
"splitUp": {
"ctrl": true,
"alt": true,
"shift": true,
"key": "VK_NUMPAD8-DISABLED"
},
"splitDown": {
"ctrl": true,
"alt": true,
"shift": true,
"key": "VK_NUMPAD2"
}
}
}