custom-electron-titlebar icon indicating copy to clipboard operation
custom-electron-titlebar copied to clipboard

Separate Title Bar and Menu Bar

Open cruzjuniel opened this issue 5 years ago • 2 comments

I'm looking to use this with Carlo from GoogleChromeLabs Are there plans to separate the Menu bar from the Title bar?

Currently, I plan to utilize this while Carlo has no support for Frameless Window like Electron. I'm thinking of simply hiding the whole title bar element for now using simple CSS styles.

It would be great if they can be separated so we can use one without the other.

cruzjuniel avatar Mar 12 '19 15:03 cruzjuniel

For now I do not plan to separate the title bar from the menu bar.

At this time you can use CSS styles to hide everything you do not need.

AlexTorresDev avatar Mar 13 '19 00:03 AlexTorresDev

.window-title, .window-controls-container {
    display: none !important;
}

This CSS should do the trick.

amanharwara avatar Mar 14 '20 14:03 amanharwara