Alexander Cyberman
Alexander Cyberman

Reputation: 2178

How to hide ide main window title bar? (in IntelliJ IDEA)

Title bar is completely useless for me. Info it shows i can see in navigation bar. useless header It only takes space. Is it possible to hide the header as looks in Netbeans?

Upvotes: 35

Views: 29855

Answers (9)

Richard N
Richard N

Reputation: 11

The title bar has been removed for the new UI in the version 2023.2.

see: https://www.jetbrains.com/idea/whatsnew/?utm_source=product&utm_medium=link&utm_campaign=IU&utm_content=2023.2

Upvotes: 0

Jorge Pastor
Jorge Pastor

Reputation: 1038

For macOS, Hide Title Bar plugin does the trick. It isn't perfect though, as traffic light buttons will slightly overlap the navigation bar.

It is also open source, in case anybody want to help improving it https://github.com/haringsrob/jetbrains-hide-title-bar

Upvotes: 1

elonzh
elonzh

Reputation: 1324

This issue will be resolved in 2020.03, see Option to disable merging main menu into window title

Upvotes: 0

fun90
fun90

Reputation: 854

  1. install plugin: Window Decorate Mode Switcher
  2. select view->switch decorate mode

You might want to toggle the "Auto undecorate on start" option under File > Settings > Switch Decorate Mode

Upvotes: 62

duckyeah
duckyeah

Reputation: 41

This is the best solution I've found: the No Title Bar gnome extension.

Works for Linux only, but it works with ALL applications, not just those from JetBrains.

Very easy, just install the browser extension, refresh the page, click the switch to enable it, and then (optionally) remove the browser extension when you are done :) Takes effect immediately.

Upvotes: 4

Olli
Olli

Reputation: 1651

If you use Windows 10 or Ubuntu (tested with IntelliJ Community 2019.2 on Windows 10 and Ubuntu 20.04; for Ubuntu: thanks to the comment of @demon101)

Hide (or show) native title bar on Windows

  • Open Help -> Edit Custom Options...
  • Allow a personal properties file to be created
  • Add a line (true = hide; false = show)
ide.win.frame.decoration=true 
  • Restart IDEA

Upvotes: 16

Ievgen Popovych
Ievgen Popovych

Reputation: 1061

Window Decorate Mode Switcher plugin works well for me on Gnome.

Upvotes: 7

Roman Sinyakov
Roman Sinyakov

Reputation: 606

https://intellij-support.jetbrains.com/hc/en-us/community/posts/360004366159/comments/360000685899

Borderless UI can be disabled by the following steps:

  1. press Ctrl+Alt+Shift+/
  2. select Registry
  3. switch off the ide.win.frame.decoraion key
  4. restart IDE

Upvotes: -1

Uladzislau Kaminski
Uladzislau Kaminski

Reputation: 2255

I really do not know the way to hide this bar, but you could use 'Full Screen Mode'.

View -> Enter Full Screen

Upvotes: 10

Related Questions