moved tray icon option from Vesktop settings to tray context menu item
This commit is contained in:
parent
3e5783e18a
commit
02bd04e3a5
2 changed files with 56 additions and 9 deletions
|
@ -102,6 +102,21 @@ function initTray(win: BrowserWindow) {
|
||||||
await clearData(win);
|
await clearData(win);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: "Change Tray Icon",
|
||||||
|
async click() {
|
||||||
|
await setTrayIcon();
|
||||||
|
/*
|
||||||
|
switch (choice) {
|
||||||
|
case "invalid":
|
||||||
|
return;
|
||||||
|
case "cancelled":
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Settings.store.trayIconPath = choice;
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
type: "separator"
|
type: "separator"
|
||||||
},
|
},
|
||||||
|
@ -120,12 +135,7 @@ function initTray(win: BrowserWindow) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
tray = new Tray(ICON_PATH);
|
tray = new Tray(getTrayIcon());
|
||||||
if (Settings.store.trayIconPath) {
|
|
||||||
const trayImage = nativeImage.createFromPath(Settings.store.trayIconPath);
|
|
||||||
if (!trayImage.isEmpty()) tray.setImage(trayImage.resize({width: 32, height: 32}));
|
|
||||||
}
|
|
||||||
|
|
||||||
tray.setToolTip("Vesktop");
|
tray.setToolTip("Vesktop");
|
||||||
tray.setContextMenu(trayMenu);
|
tray.setContextMenu(trayMenu);
|
||||||
tray.on("click", onTrayClick);
|
tray.on("click", onTrayClick);
|
||||||
|
@ -277,7 +287,7 @@ function getWindowBoundsOptions(): BrowserWindowConstructorOptions {
|
||||||
options.x = x;
|
options.x = x;
|
||||||
options.y = y;
|
options.y = y;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Settings.store.disableMinSize) {
|
if (!Settings.store.disableMinSize) {
|
||||||
options.minWidth = MIN_WIDTH;
|
options.minWidth = MIN_WIDTH;
|
||||||
options.minHeight = MIN_HEIGHT;
|
options.minHeight = MIN_HEIGHT;
|
||||||
|
@ -486,3 +496,41 @@ export async function createWindows() {
|
||||||
|
|
||||||
initArRPC();
|
initArRPC();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getTrayIcon(): string {
|
||||||
|
if (Settings.store.trayIconPath) {
|
||||||
|
const trayImage = nativeImage.createFromPath(Settings.store.trayIconPath);
|
||||||
|
if (!trayImage.isEmpty()) return Settings.store.trayIconPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ICON_PATH;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function setTrayIcon(): Promise<undefined> {
|
||||||
|
const userSelection = await dialog.showMessageBox(mainWin!, {
|
||||||
|
type: "question",
|
||||||
|
title: "Change/Reset tray icon",
|
||||||
|
message: "Would you like to change or reset the Vesktop tray icon?",
|
||||||
|
buttons: ["Change", "Reset"],
|
||||||
|
defaultId: 0,
|
||||||
|
cancelId: 2,
|
||||||
|
icon: getTrayIcon()
|
||||||
|
});
|
||||||
|
if (userSelection.response == 2) return;
|
||||||
|
if (userSelection.response == 1) {
|
||||||
|
Settings.store.trayIconPath = void 0;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const res = await dialog.showOpenDialog(mainWin!, {
|
||||||
|
properties: ["openFile"],
|
||||||
|
filters: [{ name: "Image", extensions: ["png", "jpg"] }],
|
||||||
|
defaultPath: getTrayIcon()
|
||||||
|
});
|
||||||
|
if (!res.filePaths.length) return;
|
||||||
|
|
||||||
|
const dir = res.filePaths[0];
|
||||||
|
const image = nativeImage.createFromPath(dir);
|
||||||
|
if (image.isEmpty()) return;
|
||||||
|
|
||||||
|
Settings.store.trayIconPath = dir;
|
||||||
|
}
|
||||||
|
|
|
@ -127,8 +127,7 @@ const SettingsOptions: Record<string, Array<BooleanSetting | SettingsComponent>>
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"Tray Icon Image": [TrayIconImagePicker],
|
"Tray Icon Image": [TrayIconImagePicker]
|
||||||
"Vencord Location": [VencordLocationPicker],
|
|
||||||
};
|
};
|
||||||
|
|
||||||
function SettingsSections() {
|
function SettingsSections() {
|
||||||
|
|
Reference in a new issue