mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 18:41:47 +00:00
12 lines
333 B
JavaScript
12 lines
333 B
JavaScript
const customTitlebar = require("custom-electron-titlebar");
|
|
|
|
module.exports = () => {
|
|
const bar = new customTitlebar.Titlebar({
|
|
backgroundColor: customTitlebar.Color.fromHex("#050505"),
|
|
});
|
|
try {
|
|
bar.updateMenu(null);
|
|
} catch (e) {
|
|
//will always throw type error - null isn't menu, but it works
|
|
}
|
|
} |