-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathconfig.json
82 lines (82 loc) · 2.17 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"__comment" : "following hotkey types are supported: nothing, typeout, shortcut and run; only en, fr, de and si keyboard mappings are currently supported",
"keyboard_mapping": "en",
"notify": "True",
"profiles": {
"MEMORY_1": {
"MACRO_1": {
"hotkey_type": "typeout",
"do": "This is profile m1"
},
"MACRO_2": {
"hotkey_type": "shortcut",
"do": "alt+F4"
},
"MACRO_3": {
"hotkey_type": "run",
"do": "DISPLAY=:0 nohup gnome-terminal & 2>&1 > /dev/null"
},
"MACRO_4": {
"hotkey_type": "python",
"do": "import uuid; global output_string; output_string = str(uuid.uuid4());"
}
},
"MEMORY_2": {
"MACRO_1": {
"hotkey_type": "typeout",
"do": "This is profile m2"
},
"MACRO_2": {
"hotkey_type": "shortcut",
"do": "alt+F4"
},
"MACRO_3": {
"hotkey_type": "run",
"do": "DISPLAY=:0 nohup gnome-terminal & 2>&1 > /dev/null"
},
"MACRO_4": {
"hotkey_type": "python",
"do": "import uuid; global output_string; output_string = str(uuid.uuid4());"
}
},
"MEMORY_3": {
"MACRO_1": {
"hotkey_type": "typeout",
"do": "This is profile m3"
},
"MACRO_2": {
"hotkey_type": "shortcut",
"do": "alt+F4"
},
"MACRO_3": {
"hotkey_type": "run",
"do": "DISPLAY=:0 nohup gnome-terminal & 2>&1 > /dev/null"
},
"MACRO_4": {
"hotkey_type": "python",
"do": "import uuid; global output_string; output_string = str(uuid.uuid4());"
}
},
"MEMORY_RECORD": {
"MACRO_1": {
"hotkey_type": "typeout",
"do": "This is profile mr"
},
"MACRO_2": {
"hotkey_type": "shortcut",
"do": "alt+F4"
},
"MACRO_3": {
"hotkey_type": "run",
"do": "DISPLAY=:0 nohup gnome-terminal & 2>&1 > /dev/null"
},
"MACRO_4": {
"hotkey_type": "python",
"do": "import uuid; global output_string; output_string = str(uuid.uuid4());"
}
}
},
"logging": "True",
"log_path": "g910-gkeys.log",
"log_level": "INFO"
}