Tray: Add more buttons (#2)

This commit is contained in:
Toad
2023-04-05 23:08:28 +01:00
committed by GitHub
parent 19c43289f6
commit 3da4c02129

View File

@@ -23,6 +23,25 @@ function initTray(win: BrowserWindow) {
},
enabled: false
},
{
label: "About",
click: createAboutWindow
},
{
label: "Update Vencord",
async click() {
await downloadVencordFiles();
app.relaunch();
app.quit();
}
},
{
label: "Relaunch",
click() {
app.relaunch();
app.quit();
}
},
{
label: "Quit Vencord Desktop",
click() {