feat: add notifications for MacOS using Applescript (#160)

yolo'ed it with codex. Let me know if this looks good to you.

https://github.com/openai/codex/issues/148

tested with:
```
npm run build:dev
```

<img width="377" alt="Screenshot 2025-04-16 at 18 12 01"
src="https://github.com/user-attachments/assets/79aa799b-b0b9-479d-84f1-bfb83d34bfb9"
/>
This commit is contained in:
kchro3
2025-04-17 16:19:26 -07:00
committed by GitHub
parent be7e3fd377
commit 0a2e416b7a
11 changed files with 73 additions and 10 deletions

View File

@@ -68,6 +68,7 @@ const cli = meow(
--no-project-doc Do not automatically include the repository's 'codex.md'
--project-doc <file> Include an additional markdown file at <file> as context
--full-stdout Do not truncate stdout/stderr from command outputs
--notify Enable desktop notifications for responses
Dangerous options
--dangerously-auto-approve-everything
@@ -144,6 +145,11 @@ const cli = meow(
"Disable truncation of command stdout/stderr messages (show everything)",
aliases: ["no-truncate"],
},
// Notification
notify: {
type: "boolean",
description: "Enable desktop notifications for responses",
},
// Experimental mode where whole directory is loaded in context and model is requested
// to make code edits in a single pass.
@@ -243,6 +249,7 @@ config = {
apiKey,
...config,
model: model ?? config.model,
notify: Boolean(cli.flags.notify),
};
if (!(await isModelSupportedForResponses(config.model))) {