mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-12 11:01:45 +00:00
11 lines
352 B
JavaScript
11 lines
352 B
JavaScript
const customTitlebar = require('custom-electron-titlebar');
|
|
|
|
module.exports = () => {
|
|
const myBar = new customTitlebar.Titlebar({
|
|
backgroundColor: customTitlebar.Color.fromHex('#030303'),
|
|
itemBackgroundColor: customTitlebar.Color.fromHex('#121212'), //#020
|
|
});
|
|
myBar.updateTitle(' ');
|
|
document.title ="Youtube Music";
|
|
}
|