-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.js
45 lines (44 loc) · 809 Bytes
/
config.js
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
exports.CONFIG = {
ui_poll_interval_ms: 100,
use_clipboard: false, // May improve performance for GNOME, but may not work on some programs | try if some text is missing
touchpad_support: {
enabled: true,
candidate_timeout_ms: 1000,
device_blacklist: [
'SynPS/2'
],
preferred_device_id: {
xinput: null,
dev_event: null
},
key_mappings: {
escape: {
9: true // Esc
},
clear_timeout: {
9: true, // Esc
22: true // Backspace
}
},
touchpad_coords: {
min: {
x: 0,
y: 0
},
max: {
x: 1216,
y: 660
}
/*
touchpad_min: {
x: 74,
y: 80
},
touchpad_max: {
x: 1860,
y: 1280
}
*/
}
}
};