-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
66 lines (66 loc) · 1.74 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
64
65
66
{
"mouse_sensitivity": 20,
"scroll_sensitivity": 0.5,
"disable_binding": "UP+START",
"enable_binding": "UP+START",
"exit_binding": "L1+L2+R1+R2+START+BACK",
"mouse_joystick": "left",
"scroll_joystick": "right",
"bindings": {
"L1": "\\right_click",
"R1": "\\left_mouse",
"DOWN+START": "\\keyboard_toggle",
"R2": {
"result": ["\\type hello world!", "enter"],
"trigger": "new_long_press",
"threshold": 0.9,
"hold_threshold": 0.2
},
"Y": "backspace",
"B": "ctrl+z",
"L2": {
"result": "alt",
"trigger": "hold"
},
"RIGHT": "tab"
},
"keyboard_bindings": {
"R1": "\\left_click",
"A": "\\left_click",
"B": "backspace",
"X": "space",
"Y": "enter",
"UP": "\\up",
"DOWN": "\\down",
"LEFT": "\\left",
"RIGHT": "\\right",
"RIGHT_JOYSTICK_UP": {
"result": "up",
"trigger": "repeat",
"threshold": 0.8,
"start_delay": 0.3,
"repeat_delay": 0.1
},
"RIGHT_JOYSTICK_DOWN": {
"result": "down",
"trigger": "repeat",
"threshold": 0.8,
"start_delay": 0.3,
"repeat_delay": 0.1
},
"RIGHT_JOYSTICK_LEFT": {
"result": "left",
"trigger": "repeat",
"threshold": 0.8,
"start_delay": 0.3,
"repeat_delay": 0.1
},
"RIGHT_JOYSTICK_RIGHT": {
"result": "right",
"trigger": "repeat",
"threshold": 0.8,
"start_delay": 0.3,
"repeat_delay": 0.1
}
}
}