summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam <[email protected]>2025-12-30 15:07:36 -0600
committerAdam <[email protected]>2025-12-30 19:40:14 -0600
commit48f2419d9d8495a94af11167a44c29c0efd19766 (patch)
tree3237994fa0ea72199a2a48d31cba2b98046293e5
parentb9ef09a0f4e8c96b4549352b53a64cee4be32aa7 (diff)
downloadopencode-48f2419d9d8495a94af11167a44c29c0efd19766.tar.gz
opencode-48f2419d9d8495a94af11167a44c29c0efd19766.zip
fix(desktop): better notification icon
-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)