xo lint --fix

This commit is contained in:
Araxeus
2021-03-23 03:58:19 +02:00
parent 8cf0ec16bb
commit 459ebf7070
2 changed files with 137 additions and 139 deletions

View File

@ -1,10 +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";
}
const myBar = new customTitlebar.Titlebar({
backgroundColor: customTitlebar.Color.fromHex('#030303'),
itemBackgroundColor: customTitlebar.Color.fromHex('#121212') // #020
});
myBar.updateTitle(' ');
document.title = 'Youtube Music';
};