mirror of
https://github.com/samiyev/puaros.git
synced 2025-12-28 07:16:53 +05:00
Add DisplayConfigSchema with theme support (dark/light), stats/tool calls visibility toggles, bell notification on completion, and progress bar control. Includes theme utilities with dynamic color schemes and 46 new tests.
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
/**
|
|
* Bell notification utility for terminal.
|
|
*/
|
|
|
|
/**
|
|
* Ring the terminal bell.
|
|
* Works by outputting the ASCII bell character (\u0007).
|
|
*/
|
|
export function ringBell(): void {
|
|
process.stdout.write("\u0007")
|
|
}
|