Sublime Forum

Possible to hide menu on Linux?

#21

so, it fixed?

0 Likes

#22

Alas, no.

0 Likes

#23

Hello to the developer.

Please, please bring this feature to the linux folks out there!

What is the issue anyway? Some major linux obstacle that just isn’t feasible to implement? Please at least let us know!

Thanks!

0 Likes

#24

+1

0 Likes

#25

+1

I bought a license and i’m really happy with Sublime after ten years of developpement with vim. But with a tilling window manager, it’s annoying to not be able to hide the menu.

0 Likes

#26

Still no possibility to hide the menu… It would be so awesome to hide it on Linux !

But I have a question, on the demonstration “gif” from the homepage, it looks like Ubuntu, and the menu is hidden. Any explanation ?

0 Likes

#27

viewtopic.php?f=2&t=7843&p=33121&hilit=front+page#p33087

0 Likes

#28

Hi guys,
I managed to find a simple solution for Linux users who use Gnome3, Cinnamon or other Gnome based desktop.

If you are using Gnome3, you can get a global menu like the one in Unity, and you will not see the menu bar on the top. See the instructions here.

If you are using Cinnamon (like I do), the things are a little bit more complicated, as there is no global menu for Cinnamon. So, open the link above, and complete the first 4 steps (downloading and compiling global menu). From this point, you can hide the menu for all your GTK apps (not recommended from my point of view) by pasting this line into your terminal:

extern GTK_MODULES=globalmenu-gtk

The better alternative is to hide the menu bar only for sublime text, so you can open sublime text using this command:

GTK_MODULES=globalmenu-gtk /usr/lib/sublime-text-2/sublime_text

(I installed Sublime Text through ppa, this is why I have this path, but in case you just downloaded it, replace /usr/lib/sublime-text-2/sublime_text with the path to the executable)

It is easier to create an executable with this command, so you don’t have to paste it all the time. For example, I created two executables for Sublime Text, one that opens it with the menu bar, and the other one that opens it without the menu bar.

0 Likes

#29

Hello, thank you for this amazing tool.

Can you make hide menu option for GTK2 like it made in pidgin-guiops?
This plugin open-source, you can look at code.
There is no “hide menu” parameter in GTK specs, but you can set null as menu widget height!
Here is part of code:
https://dl.dropbox.com/u/12532926/Screens/848995734.png
Here is result:
Window with menu
Window without menu
But really it’s 1px menu!
(is there spoiler mod on this forum?)

0 Likes