@mrquake/quakecode-cli 0.64.7 → 0.64.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -426,9 +426,9 @@ export class InteractiveMode {
426
426
  // Add spinner if agent is thinking or working
427
427
  const isActive = this.session.agent.state.isStreaming || this.session.agent.state.pendingToolCalls.size > 0;
428
428
  if (isActive) {
429
- const frames = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"];
430
- const frame = frames[Math.floor(Date.now() / 100) % frames.length];
431
- this.ui.terminal.setTitle(`${frame} ${title}`);
429
+ const isBlinkOn = Math.floor((Date.now() / 100) / 6) % 2 === 0;
430
+ const dot = isBlinkOn ? "•" : "◦";
431
+ this.ui.terminal.setTitle(`${dot} ${title}`);
432
432
  }
433
433
  else {
434
434
  this.ui.terminal.setTitle(title);