diff --git a/app/main/tray.js b/app/main/tray.js index 9f4cec85..8713c8fd 100644 --- a/app/main/tray.js +++ b/app/main/tray.js @@ -6,7 +6,7 @@ const {addDomain, about} = require('./windowmanager'); let tray = null; -const APP_ICON = path.join(__dirname, '../resources', 'Icon'); +const APP_ICON = path.join(__dirname, '../resources', 'tray'); const iconPath = () => { return APP_ICON + (process.platform === 'win32' ? '.ico' : '.png'); diff --git a/app/resources/tray.ico b/app/resources/tray.ico new file mode 100644 index 00000000..e01df290 Binary files /dev/null and b/app/resources/tray.ico differ diff --git a/app/resources/tray.png b/app/resources/tray.png new file mode 100644 index 00000000..faae656d Binary files /dev/null and b/app/resources/tray.png differ