mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-27 15:17:38 +00:00
Remove activity indicator to prevent title jumping (#309)
This commit is contained in:
parent
2c6697ba02
commit
b16035b9f8
1 changed files with 4 additions and 4 deletions
|
|
@ -180,11 +180,11 @@ function parseClaudeStatus(data: string): ActivityStatus | null {
|
||||||
// Format tokens - the input already has 'k' suffix in the regex pattern
|
// Format tokens - the input already has 'k' suffix in the regex pattern
|
||||||
// So "6.0" means 6.0k tokens, not 6.0 tokens
|
// So "6.0" means 6.0k tokens, not 6.0 tokens
|
||||||
const formattedTokens = `${tokens}k`;
|
const formattedTokens = `${tokens}k`;
|
||||||
// Include indicator + action and stats
|
// Include action and stats (without indicator to avoid title jumping)
|
||||||
displayText = `${indicator} ${action} (${duration}s, ${direction}${formattedTokens})`;
|
displayText = `${action} (${duration}s, ${direction}${formattedTokens})`;
|
||||||
} else {
|
} else {
|
||||||
// Simple format without token info
|
// Simple format without token info (without indicator to avoid title jumping)
|
||||||
displayText = `${indicator} ${action} (${duration}s)`;
|
displayText = `${action} (${duration}s)`;
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue