iocave / customize-ui

UI Customization plugin for vscode
MIT License
527 stars 36 forks source link

[help] inline titlebar on windows #168

Open ghost opened 1 year ago

ghost commented 1 year ago

Using this code in settings.json on windows 10

"window.menuBarVisibility": "toggle",
"window.titleBarStyle": "native",
"customizeUI.titleBar": "inline",

Current (with window.title)

Expected (without window.title)

ghost commented 1 year ago
//"window.menuBarVisibility": "toggle",
//"window.titleBarStyle": "native",
//"customizeUI.titleBar": "inline",

"customizeUI.stylesheet": {
      ".monaco-workbench .titlebar": "display: none !important;",
      ".monaco-workbench .titlebar > div.window-title": "display: none",
      // Hide top-right buttons
      ".titlebar .window-controls-container": "display: none !important;",
      ".editor .title .actions-container .action-item a": "display: none !important;",
 },

I could customize upto this