1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-30 00:12:50 -05:00

launcher: optimize bindings and filters

This commit is contained in:
bbedward
2026-01-04 11:49:05 -05:00
parent 2e1bed5fb5
commit 151d695212
9 changed files with 250 additions and 279 deletions

View File

@@ -7,10 +7,6 @@
"engines": {
"vscode": "^1.70.0"
},
"main": "./extension.js",
"activationEvents": [
"onStartupFinished"
],
"categories": [
"Themes"
],
@@ -31,17 +27,20 @@
{
"label": "Dynamic Base16 DankShell",
"uiTheme": "vs-dark",
"path": "./themes/dankshell-default.json"
"path": "./themes/dankshell-default.json",
"_watch": true
},
{
"label": "Dynamic Base16 DankShell (Dark)",
"uiTheme": "vs-dark",
"path": "./themes/dankshell-dark.json"
"path": "./themes/dankshell-dark.json",
"_watch": true
},
{
"label": "Dynamic Base16 DankShell (Light)",
"uiTheme": "vs",
"path": "./themes/dankshell-light.json"
"path": "./themes/dankshell-light.json",
"_watch": true
}
]
}