Skip to content

Commit

Permalink
fix: mac dock image and name
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Feb 23, 2024
1 parent 69fd9bc commit 3b2d6ec
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions electron/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,10 @@ ipcMain.on('check', async function (event, argument) {

// APP-SPECIFIC EVENTS
app.on('ready', async () => {
if (platform === 'darwin') {
app.dock?.setIcon(path.join(__dirname, 'assets/icons/robot-head.png'));
app.dock?.setBadge('Olas Operate');
}
createSplashWindow();
});

Expand Down

0 comments on commit 3b2d6ec

Please sign in to comment.