Skip to content

Commit

Permalink
Added some additional buttons for the tray icon
Browse files Browse the repository at this point in the history
  • Loading branch information
AstralVixen committed Nov 7, 2024
1 parent 85506b3 commit d0ddf87
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -420,12 +420,37 @@ function createTray() {
mainWindow.show();
}
},
{
label: 'Visit website',
click: () => {
shell.openExternal('https://geforce-infinity.xyz')
}
},
{
label: 'Report issue',
click: () => {
shell.openExternal('https://github.com/AstralVixen/GeForce-Infinity/issues')
}
},
{
label: 'Donate',
click: () => {
shell.openExternal('https://www.patreon.com/c/astralvixen/membership')
}
},
{
label: 'Join my discord',
click: () => {
shell.openExternal('https://discord.gg/p5vRgQwZ9K')
}
},
{
label: 'Quit',
click: () => {
app.quit();
}
}

]);

tray.setToolTip('GeForce Infinity');
Expand Down

0 comments on commit d0ddf87

Please sign in to comment.