To Nha Notes | Oct. 29, 2025, 4:23 p.m.
If you're using Cursor AI code editor on Ubuntu and the menu bar (File, Edit, View, etc.) is not visible, even after changing the menu bar visibility settings, you're not alone. This is a common issue related to how Cursor handles window decorations on Linux systems.
The fix requires setting two configuration options together:
{
"window.menuBarVisibility": "classic",
"window.titleBarStyle": "custom"
}
The key is the combination of both settings:
On Ubuntu (especially with GNOME), the native title bar can conflict with the application menu rendering. Setting a custom title bar style resolves this conflict and allows the menu bar to display properly.
If you need quick access to the menu while troubleshooting: