mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 18:41:47 +00:00
14 lines
320 B
JavaScript
14 lines
320 B
JavaScript
const {urgencyLevels, setUrgency} = require("./utils");
|
|
|
|
module.exports = (win, options) => [
|
|
{
|
|
label: "Notification Priority",
|
|
submenu: urgencyLevels.map(level => ({
|
|
label: level.name,
|
|
type: "radio",
|
|
checked: options.urgency === level.value,
|
|
click: () => setUrgency(options, level.value)
|
|
})),
|
|
},
|
|
];
|