We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0942b01 commit 5cd7ef6Copy full SHA for 5cd7ef6
crates/q_cli/src/cli/chat/mod.rs
@@ -1690,7 +1690,10 @@ where
1690
1691
if self.interactive {
1692
// Play notification bell when response is complete
1693
- play_notification_bell();
+ // Use the chat context's settings to determine if notifications are enabled
1694
+ if self.settings.get_bool_or("chat.enableNotifications", true) {
1695
+ play_notification_bell();
1696
+ }
1697
queue!(self.output, style::ResetColor, style::SetAttribute(Attribute::Reset))?;
1698
execute!(self.output, style::Print("\n"))?;
1699
0 commit comments