summaryrefslogtreecommitdiffhomepage
path: root/packages/desktop/src
diff options
context:
space:
mode:
Diffstat (limited to 'packages/desktop/src')
-rw-r--r--packages/desktop/src/index.tsx5
1 files changed, 4 insertions, 1 deletions
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)