2022-04-20 19:50:23 +00:00
|
|
|
import { app, Menu, Tray } from "electron";
|
|
|
|
import { mainWindow } from "./window";
|
|
|
|
import { getConfig } from "./utils";
|
2022-03-04 17:53:18 +00:00
|
|
|
import * as path from "path";
|
2022-04-20 19:50:23 +00:00
|
|
|
import { createSettingsWindow } from "./settings/main";
|
|
|
|
let tray: any = null;
|
|
|
|
app.whenReady().then(async () => {
|
|
|
|
if (await getConfig("windowStyle") == "discord") {
|
2022-04-21 16:20:58 +00:00
|
|
|
tray = new Tray(path.join(__dirname, "../", "/assets/dsc-tray.png"));
|
2022-04-20 19:50:23 +00:00
|
|
|
const contextMenu = Menu.buildFromTemplate([
|
|
|
|
{
|
|
|
|
label: "Open ArmCord",
|
|
|
|
click: function () {
|
|
|
|
mainWindow.show();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Quit ArmCord",
|
|
|
|
click: function () {
|
|
|
|
app.quit();
|
|
|
|
}
|
2022-03-04 17:53:18 +00:00
|
|
|
}
|
2022-04-20 19:50:23 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
tray.setToolTip("Discord");
|
|
|
|
tray.setContextMenu(contextMenu);
|
|
|
|
} else {
|
|
|
|
tray = new Tray(path.join(__dirname, "../", "/assets/ac_plug.png"));
|
|
|
|
const contextMenu = Menu.buildFromTemplate([
|
2022-05-14 17:55:06 +00:00
|
|
|
{
|
|
|
|
label: "ArmCord",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "separator"
|
|
|
|
},
|
2022-04-20 19:50:23 +00:00
|
|
|
{
|
|
|
|
label: "Open ArmCord",
|
|
|
|
click: function () {
|
|
|
|
mainWindow.show();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Open Settings",
|
|
|
|
click: function () {
|
|
|
|
createSettingsWindow();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Support Discord Server",
|
|
|
|
click: function () {
|
|
|
|
mainWindow.show();
|
|
|
|
mainWindow.loadURL("https://discord.gg/TnhxcqynZ2");
|
|
|
|
}
|
|
|
|
},
|
2022-05-14 17:55:06 +00:00
|
|
|
{
|
|
|
|
type: "separator"
|
|
|
|
},
|
2022-04-20 19:50:23 +00:00
|
|
|
{
|
|
|
|
label: "Quit ArmCord",
|
|
|
|
click: function () {
|
|
|
|
app.quit();
|
|
|
|
}
|
2022-03-04 17:53:18 +00:00
|
|
|
}
|
2022-04-20 19:50:23 +00:00
|
|
|
]);
|
2022-03-04 17:53:18 +00:00
|
|
|
|
2022-04-20 19:50:23 +00:00
|
|
|
tray.setToolTip("ArmCord " + app.getVersion());
|
|
|
|
tray.setContextMenu(contextMenu);
|
|
|
|
}
|
2022-03-04 17:53:18 +00:00
|
|
|
});
|