From 92f6061498136b54b58153fe9b723fff842976ef Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 16 May 2026 20:43:26 +0900 Subject: claude: remove cost information from statusline --- bin/__claude-code-statusline | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'bin/__claude-code-statusline') diff --git a/bin/__claude-code-statusline b/bin/__claude-code-statusline index e315e1f..0e4917f 100755 --- a/bin/__claude-code-statusline +++ b/bin/__claude-code-statusline @@ -13,6 +13,5 @@ consumed_tokens="$(echo "$input" | jq -r ' [. * 10 / 1000, 0] | max | floor / 10 | " \(.)k" ')" used_percentage="$(echo "$input" | jq -r '.context_window.used_percentage // 0 | " @ \(.)%"')" -cost="$(echo "$input" | jq -r '.cost.total_cost_usd // 0 | . * 100 | floor / 100 | " ($\(.))"')" -echo "[$model]$consumed_tokens$used_percentage$cost ${cwd/#$HOME/\~}" +echo "[$model]$consumed_tokens$used_percentage ${cwd/#$HOME/\~}" -- cgit v1.3.1