Skip to content

Transparent title bar with native title label in Electron for Mac

License

Notifications You must be signed in to change notification settings

seanchas116/transparent-titlebar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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