tazuna 0.1.0

TUI tool for managing multiple Claude Code sessions in parallel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Terminal bell notification.
//!
//! Simple BEL character output for audio notification.

use std::io::{self, Write};

/// Terminal bell notification
pub struct TerminalBell;

impl TerminalBell {
    /// Ring the terminal bell (BEL character \x07)
    pub fn ring() -> io::Result<()> {
        io::stdout().write_all(b"\x07")?;
        io::stdout().flush()
    }
}