-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings-linux.json
More file actions
30 lines (30 loc) · 1.1 KB
/
settings-linux.json
File metadata and controls
30 lines (30 loc) · 1.1 KB
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
{
"actionButtons": {
"defaultColor": "yellow", // Can also use string color names.
"loadNpmCommands":false, // Disables automatic generation of actions for npm commands.
"reloadButton":"♻️", // Custom reload button text or icon (default ↻). null value enables automatic reload on configuration change
"commands": [
{
"name": "OCF Gen",
"singleInstance": false,
"command": "gen.sh", // This is executed in the terminal.
},
{
"name": "OCF Build",
"singleInstance": false,
"command": "build.sh", // This is executed in the terminal.
},
{
"name": "OCF Run",
"singleInstance": false,
"command": "run.sh", // This is executed in the terminal.
},
{
"name": "OCF Reset",
"singleInstance": false,
"command": "rm -rf ./bin/device_builder_server_creds",
}
]
},
"cmake.configureOnOpen": true
}