mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-10 18:21:47 +00:00
add skip existing files option
This commit is contained in:
@ -37,5 +37,14 @@ module.exports = (win, options) => {
|
||||
checked: options.preset === preset,
|
||||
})),
|
||||
},
|
||||
{
|
||||
label: "Skip existing files",
|
||||
type: "checkbox",
|
||||
checked: options.skipExisting,
|
||||
click: () => {
|
||||
options.skipExisting = !options.skipExisting;
|
||||
setMenuOptions("downloader", options);
|
||||
}
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user