drcika / apc-extension

https://marketplace.visualstudio.com/items?itemName=drcika.apc-extension
MIT License
670 stars 26 forks source link

Cannot hide title bar since new VSCode update 1.86 #146

Closed bongoslav closed 9 months ago

bongoslav commented 9 months ago

I am on MacOS M2 Air. Since an update I got a few days ago my title bar cannot be hidden. Here are the relative settings.

"apc.activityBar": {
    "position": "bottom",
    "size": 24,
    "hideSettings": true
},
"apc.electron": {
    "frame": false,
    "titleBarStyle": "hidden",
},
"window.titleBarStyle": "native",
"apc.font.family": "JetBrains Mono",
"apc.stylesheet": {
    ".title-label": "display: none !important",
    ".title-actions": "display: none !important",
    ".tabs-and-actions-container > .editor-actions": "display: none !important",
    ".titlebar-center": "display: none !important",
},
"apc.menubar.compact": true,
"apc.statusBar": {
    "position": "editor-bottom",
}

And the result: image

zeroaddresss commented 4 months ago

Same issue on VSCode 1.90.2

  // APC
  "apc.activityBar": {
    "position": "bottom",
    "hideSettings": true,
    "size": 28
  },
  "apc.electron": {
    "frame": false,
    "titleBarStyle": "hidden"
  },
  "window.titleBarStyle": "native",
  "window.customTitleBarVisibility": "never",
  // "window.menuBarVisibility": "hidden",
  "apc.font.family": "FiraCode Nerd Font",
  // "apc.monospace.font.family": "FiraCode Nerd Font",
  "apc.statusBar": {
    "position": "editor-bottom",
    "height": 28,
    "fontSize": 12
  },

  // Cusom css
  "apc.stylesheet": {
    // ".sidebar > .composite": "height: 12px !important",
    ".title-label": "display: none !important",
    ".title-actions": "display: none !important",
    ".tabs-and-actions-container > .editor-actions": "display: none !important",
    ".titlebar-center": "display: none !important",
    ".sidebar .title-label": "padding: 0 !important",
    ".window-title": {
      "display": "none"
    },
    "apc.menubar.compact": "true",
    // ".composite.title": "display: none !important",
    // ".sidebar .title-label h2": "line-height: 2.8 !important",
    // ".panel .composite.title": "visibility: full !important",
    ".titlebar-right": "display: none !important",
    ".inline-tabs-placeholder": "display: none !important",
    ".split-view-view .visible": "background-color: #1E1E2E !important"
  }

Result: image