transparent-titlebar icon indicating copy to clipboard operation
transparent-titlebar copied to clipboard

Transparent title bar with native title label in Electron for Mac

transparent-titlebar

Transparent title bar with native title label in Electron for Mac

Example

Using transparent-titlebar titleBarStyle: hidden in Electron Normal
Using transparent-titlebar titleBarStyle: hidden Normal

Install

npm install transparent-titlebar

TypeScript definitions are included.

Use

let win: BrowserWindow
const transparentTitlebar = require('transparent-titlebar')

// Setup window to use transparent titlebar
transparentTitlebar.setup(win.getNativeWindowHandle())

// Set title color (must be called on page load and whenever the title has changed)
transparentTitlebar.setColor(win.getNativeWindowHandle(), 1, 0, 0, 1)

Run Example

cd examples
npm install
npm start