Skip to content
This repository has been archived by the owner on Aug 29, 2018. It is now read-only.

Commit

Permalink
🐛 fix: remove default cat icon to the webuild icon
Browse files Browse the repository at this point in the history
  • Loading branch information
sayanee committed Jun 1, 2015
1 parent 15907c6 commit a90cea5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ var ipc = require('ipc');
var path = require('path');

var mb = menubar({
dir: process.cwd(), // No idea why this is needed for the icon to work
width: 400,
height: 480,
index: 'file://' + path.join(__dirname, 'index.html')
index: 'file://' + path.join(__dirname, 'index.html'),
icon: path.join(__dirname, 'IconTemplate.png')
});

mb.on('ready', function ready () {
Expand Down

1 comment on commit a90cea5

@sayanee
Copy link
Member Author

@sayanee sayanee commented on a90cea5 Jun 1, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

had to remove dir and then put in the icon to not display the default cat icon! 😖

Please sign in to comment.