How to Hide the Title Bar in Cursor on macOS?

Hey all,

I’m trying to achieve a more minimal and distraction-free setup in Cursor on macOS, and I’d like to hide the title bar (the top bar showing the file name, buttons, etc.).

So far, I haven’t found a native setting or shortcut to toggle it off. Has anyone figured out a way to hide the title bar in Cursor on macOS?

1 Like

I think i found a solution:

Extension: GitHub - subframe7536/vscode-custom-ui-style: VSCode extension that modify CSS and JS code in both editor and webview, unify global font family, setup background image and Electron BrowserWindow options, or add your custom CSS or JS code
settings file:

  "window.titleBarStyle":"native",
  "custom-ui-style.electron": {
    "frame": false,
  },

Great, I’m glad you found a solution. I use this extension myself.

1 Like