diff --git a/res/img/element.ico b/res/img/element.ico new file mode 100644 index 0000000..d80c6c5 Binary files /dev/null and b/res/img/element.ico differ diff --git a/res/img/element.png b/res/img/element.png new file mode 100644 index 0000000..4e6c4f5 Binary files /dev/null and b/res/img/element.png differ diff --git a/res/img/riot.ico b/res/img/riot.ico deleted file mode 100644 index 1305b7d..0000000 Binary files a/res/img/riot.ico and /dev/null differ diff --git a/res/img/riot.png b/res/img/riot.png deleted file mode 100644 index f52d02c..0000000 Binary files a/res/img/riot.png and /dev/null differ diff --git a/src/electron-main.js b/src/electron-main.js index 9547d9a..f35f7bc 100644 --- a/src/electron-main.js +++ b/src/electron-main.js @@ -207,7 +207,7 @@ async function setupGlobals() { // The tray icon // It's important to call `path.join` so we don't end up with the packaged asar in the final path. - const iconFile = `riot.${process.platform === 'win32' ? 'ico' : 'png'}`; + const iconFile = `element.${process.platform === 'win32' ? 'ico' : 'png'}`; iconPath = path.join(resPath, "img", iconFile); trayConfig = { icon_path: iconPath,