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