how about add a '\a' bell for confirm dialog? #1708
yurenchen000
started this conversation in
Ideas
Replies: 2 comments 3 replies
-
|
Hey! We’re planning on adding notification support in #1356, which we expect to merge. It’ll work on pretty much all platforms and so it should solve for this one. |
Beta Was this translation helpful? Give feedback.
3 replies
-
|
I added this print roughly, and it worked as I expected. index 1db2b407..d6633825 100644
--- a/internal/agent/agent.go
+++ b/internal/agent/agent.go
@@ -493,6 +493,8 @@ func (a *sessionAgent) Run(ctx context.Context, call SessionAgentCall) (*fantasy
notifBody := fmt.Sprintf("Agent's turn completed in \"%s\"", currentSession.Title)
_ = notification.Send("Crush is waiting...", notifBody)
}
+ fmt.Print("\a") |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When waiting for a worker, we’re not always watching the terminal; we may be in a different tab, window, or workspace.
A
'\a'terminal bell (or other custom string) could be useful for bringing us backecho -e '\a'Beta Was this translation helpful? Give feedback.
All reactions