Update to new desktop icon

This commit is contained in:
smartfrigde 2023-05-13 22:53:48 +02:00
parent 017ee7b430
commit 51018b108a
6 changed files with 2 additions and 2 deletions

BIN
assets/desktop.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View file

@ -66,7 +66,7 @@ if (!app.requestSingleInstanceLock()) {
if ((await getConfig("customIcon")) !== undefined ?? null) {
iconPath = await getConfig("customIcon");
} else {
iconPath = path.join(__dirname, "../", "/assets/ac_icon_transparent.png");
iconPath = path.join(__dirname, "../", "/assets/desktop.png");
}
async function init(): Promise<void> {
switch (await getConfig("windowStyle")) {

View file

@ -57,7 +57,7 @@ export function setup(): void {
trayIcon: "default",
doneSetup: false,
clientName: "ArmCord",
customIcon: path.join(__dirname, "../", "/assets/ac_icon_transparent.png")
customIcon: path.join(__dirname, "../", "/assets/desktop.png")
};
setConfigBulk({
...defaults