Skip to content

Instantly share code, notes, and snippets.

@ghostzero
Created March 28, 2023 14:05
Show Gist options
  • Select an option

  • Save ghostzero/984d5f66892cecbfd412edfca3df8f85 to your computer and use it in GitHub Desktop.

Select an option

Save ghostzero/984d5f66892cecbfd412edfca3df8f85 to your computer and use it in GitHub Desktop.
// Enables staying on fullscreen apps for macos https://github.com/electron/electron/pull/11599
win.setFullScreenable( false )
// VisibleOnFullscreen removed in https://github.com/electron/electron/pull/21706
win.setVisibleOnAllWorkspaces( true, { visibleOnFullScreen: true } )
// Values include normal, floating, torn-off-menu, modal-panel, main-menu, status, pop-up-menu, screen-saver
win.setAlwaysOnTop( true, 'screen-saver' )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment