diff --git a/packages/desktop/src/index.tsx b/packages/desktop/src/index.tsx index a36da4125..6c2106935 100644 --- a/packages/desktop/src/index.tsx +++ b/packages/desktop/src/index.tsx @@ -107,7 +107,10 @@ const platform: Platform = { await Promise.resolve() .then(() => { - const notification = new Notification(title, { body: description ?? "" }) + const notification = new Notification(title, { + body: description ?? "", + icon: "https://opencode.ai/favicon-96x96.png", + }) notification.onclick = () => { const win = getCurrentWindow() void win.show().catch(() => undefined)