Styled Bars [Titlebar + Scrollbar]

This commit is contained in:
Araxeus
2021-03-23 02:46:13 +02:00
parent ce2970eefa
commit b8c5c87cfa
6 changed files with 273 additions and 2 deletions

View File

@ -0,0 +1,10 @@
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";
}