summaryrefslogtreecommitdiff
path: root/src/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.ts')
-rw-r--r--src/main.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.ts b/src/main.ts
index 9df2c55..5200d0b 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -21,7 +21,8 @@ const createWindow = () => {
height: 550,
minHeight: 475,
minWidth: 650,
- frame: false
+ frame: false,
+ icon: path.join(__dirname,"../assets/media/icon.ico")
});
// and load the index.html of the app.
@@ -90,7 +91,7 @@ let appIcon:Tray = null;
EventEmitter.on('openTray',()=>{
if(!appIcon){
- const iconName = "../assets/media/screenshot.png";
+ const iconName = "../assets/media/plushmouboo.png";
const iconPath = path.join(__dirname, iconName)
appIcon = new Tray(iconPath)