mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 10:31:47 +00:00
🚀 Added function to toggle resuming of last song when app starts
This commit is contained in:
8
menu.js
8
menu.js
@ -66,6 +66,14 @@ const mainMenuTemplate = (win) => [
|
||||
config.set("options.autoResetAppCache", item.checked);
|
||||
},
|
||||
},
|
||||
{
|
||||
label: "Resume last song when app starts",
|
||||
type: "checkbox",
|
||||
checked: config.get("options.resumeSongOnStart"),
|
||||
click: (item) => {
|
||||
config.set("options.resumeSongOnStart", item.checked);
|
||||
}
|
||||
},
|
||||
...(is.windows() || is.linux()
|
||||
? [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user