how to remove menu bar in electron app without removing frame code example
Example 1: electron hide top bar
mainWindow.setMenuBarVisibility(false) //partially
Example 2: how to remove menu bar in electron app without removing frame
removeMenu: true;
Example 3: electron disable menu
my_window.setMenu(false);
Example 4: how to remove menu bar in electron app without removing frame
mainWindow.removeMenu: true;