Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sublime Text 4 hide title bar

I'm running i3 window manager on linux and my sublime text was just updated to version 4.

Now there is a (rather obnoxiously large) title bar above the menu which shows the current file path that I cannot get rid of. I assume this is non standard since all other programs on my machine don't show a title bar due to i3.

Distraction free mode and fullscreen mode hide it, but that defeats the purpose of a tiling window manager.

How can I disable this?

I can see the option

"themed_title_bar": false,

but this doesn't hide the title bar. I don't see a toggle option either like the menu or status bars.

like image 866
myol Avatar asked May 24 '21 14:05

myol


People also ask

How do I hide the top bar in Sublime Text?

A simple plugin that will hide the menu for new windows in the Sublime Text 3 editor By default, the menu is shown on every new window until the user decides to hide it through “View > Hide Menu”.

How do I hide in Sublime Text?

To hide the Minimap in Sublime text 3, click on “View” in the top bar, then click “Hide Minimap”, which will be the second option in the drop-down list. The Minimap will instantly be hidden and the area of the screen it previously used will be freed-up for text to take its place.

What's new in Sublime Text for Mac?

The side bar, tab bar, Goto Anything, Goto Definition, auto complete and more have all been tweaked to make code navigation easier and more intuitive than ever. Sublime Text for Mac now includes native support for Apple Silicon processors.

What happened to Sublime Text license keys?

A huge thanks goes out to all the beta testers on discord and all the contributors to our packages. Sublime Text license keys are no longer tied to a single major version, instead they are now valid for all updates within 3 years of purchase.

How to add high-level information about the Ui popups in sublime?

Add sublime.ui_info () for high-level information about the UI Popups will be properly positioned when displayed near the right-hand side of the editor Popups near the right-hand side of the editor with wrapped lines will now be properly sized Added ListInputItem so that ListInputHandler objects can provide kind info, annotations and details

Can I utilize Sublime Text with JavaScript?

Utilize all of the smart syntax-based features of Sublime Text within the modern JavaScript ecosystem. The syntax highlighting engine has been significantly improved, with new features like handling non-deterministic grammars, multi-line constructs, lazy embeds and syntax inheritance.


Video Answer


1 Answers

The themed_title_bar setting controls whether the theme you're using has the ability to change the color of the title bar or not to match the theme (for themes that support it). On Windows this also has the effect of hiding the menu and placing it in a rolled up "hamburger menu" in the title bar.

On Linux, there is also support for custom title bars irrespective of that which only enables itself if it detects that you're using an appropriate window manager. In cases where it detects incorrectly (you want the feature but it's not enabled) or you want to remove it because you don't want it (which is sounds like you're running into here), you need to adjust the value of this setting:

    "gtk_client_side_window_decorations": true,

Setting it to true turns on the feature, and false turns it off; you must restart Sublime after changing the setting for it to take effect.

like image 184
OdatNurd Avatar answered Oct 19 '22 20:10

OdatNurd