mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 10:31:47 +00:00
15 lines
382 B
JavaScript
15 lines
382 B
JavaScript
const { Titlebar, Color } = require('custom-electron-titlebar');
|
|
|
|
module.exports = () => {
|
|
new Titlebar({
|
|
backgroundColor: Color.fromHex('#050505'),
|
|
minimizable: false,
|
|
maximizable: false,
|
|
menu: null,
|
|
});
|
|
const mainStyle = document.querySelector('#container').style;
|
|
mainStyle.width = '100%';
|
|
mainStyle.position = 'fixed';
|
|
mainStyle.border = 'unset';
|
|
};
|