mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 10:31:47 +00:00
15 lines
389 B
JavaScript
15 lines
389 B
JavaScript
const { setOptions } = require("../../config/plugins");
|
|
|
|
module.exports = (win, options) => [
|
|
{
|
|
label: "Hide Icon",
|
|
type: "checkbox",
|
|
checked: options.hideIcon,
|
|
click: (item) => {
|
|
win.webContents.send("hideIcon", item.checked);
|
|
options.hideIcon = item.checked;
|
|
setOptions("in-app-menu", options);
|
|
},
|
|
}
|
|
];
|