npm.io
0.2.0 • Published 6 years ago

transparent-titlebar

Licence
MIT
Version
0.2.0
Deps
2
Size
7 kB
Vulns
0
Weekly
0
Stars
16
Install scriptsThis package runs scripts during installation (preinstall/install/postinstall)

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