Skip to content

Commit e3a9adc

Browse files
committed
add titlebar colors to workspace
1 parent 4fe826d commit e3a9adc

File tree

2 files changed

+48
-18
lines changed

2 files changed

+48
-18
lines changed

meshcentral-commit.code-workspace

Lines changed: 29 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,31 @@
11
{
2-
"folders": [
3-
{
4-
"name": "contrib/abtract-draft",
5-
"path": "."
6-
},
7-
{
8-
"path": "/home"
9-
},
10-
{
11-
"path": "../meshcentral-data"
12-
},
13-
{
14-
"name": "MeshCentral",
15-
"path": "../node_modules/meshcentral"
16-
}
17-
],
18-
"settings": {}
2+
"folders": [
3+
{
4+
"name": "contrib/abtract-draft",
5+
"path": "."
6+
},
7+
{
8+
"name": "_vendor",
9+
"path": "../_vendor"
10+
},
11+
{
12+
"path": "/home"
13+
},
14+
{
15+
"path": "../meshcentral-data"
16+
},
17+
{
18+
"name": "MeshCentral",
19+
"path": "../node_modules/meshcentral"
20+
}
21+
],
22+
"settings": {
23+
"workbench.colorCustomizations": {
24+
"titleBar.activeBackground": "#006000",
25+
"titleBar.activeForeground": "#cccccc",
26+
"titleBar.inactiveBackground": "#004000",
27+
"titleBar.inactiveForeground": "#9d9d9d",
28+
"titleBar.border": "#006000"
29+
}
30+
}
1931
}

meshcentral-debug.code-workspace

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
{
1111
"name": "MeshCentral",
1212
"path": "../node_modules/meshcentral"
13+
},
14+
{
15+
"path": ".."
1316
}
1417
],
1518
"launch": {
@@ -19,14 +22,29 @@
1922
"name": "Launch MeshCentral",
2023
"cwd": "${workspaceFolder}/..",
2124
"program": "node_modules/meshcentral/meshcentral.js",
25+
"_no-runtimeArgs": ["--preserve-symlinks", "--expose-internals"],
26+
"env": {
27+
"MESHCENTRAL_DEV_NO_AGENT_SIGNING": "1"
28+
},
2229
"request": "launch",
2330
"skipFiles": [
2431
"<node_internals>/**",
32+
"**/node_modules/mongodb/**",
33+
],
34+
"_no-skipFiles": [
2535
"**/plugins/pluginhookscheduler/pluginhookscheduler.js"
2636
],
2737
"type": "node"
2838
}
2939
]
3040
},
31-
"settings": {}
41+
"settings": {
42+
"workbench.colorCustomizations": {
43+
"titleBar.activeBackground": "#606000",
44+
"titleBar.activeForeground": "#cccccc",
45+
"titleBar.inactiveBackground": "#404000",
46+
"titleBar.inactiveForeground": "#9d9d9d",
47+
"titleBar.border": "#606000"
48+
}
49+
}
3250
}

0 commit comments

Comments
 (0)