mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 18:41:47 +00:00
17 lines
404 B
JavaScript
17 lines
404 B
JavaScript
const { setOptions } = require("../../config/plugins");
|
|
const { toggleRomanized } = require("./back");
|
|
|
|
module.exports = (win, options, refreshMenu) => {
|
|
return [
|
|
{
|
|
label: "Romanized Lyrics",
|
|
type: "checkbox",
|
|
checked: options.romanizedLyrics,
|
|
click: (item) => {
|
|
options.romanizedLyrics = item.checked;
|
|
setOptions('lyrics-genius', options);
|
|
toggleRomanized();
|
|
},
|
|
},
|
|
];
|
|
}; |