From c9db0be030bace8a1d16593d3a6967c77b45f066 Mon Sep 17 00:00:00 2001 From: vitaly Date: Sat, 6 Jun 2026 23:58:12 +0300 Subject: [PATCH] =?UTF-8?q?feat:=20=D1=81=D0=BA=D0=BE=D1=80=D1=80=D0=B5?= =?UTF-8?q?=D0=BA=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D1=82=D1=8C=20=D0=BF?= =?UTF-8?q?=D0=BE=D1=80=D0=BE=D0=B3=D0=B8=20=D1=86=D0=B2=D0=B5=D1=82=D0=BE?= =?UTF-8?q?=D0=B2=20ctx?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit зелёный <40%, жёлтый 40-60%, красный >=60% (совпадает с порогом звука) Co-Authored-By: Claude Sonnet 4.6 --- home-configs/claude/statusline-command.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home-configs/claude/statusline-command.sh b/home-configs/claude/statusline-command.sh index 2d8dda0..aaefb98 100644 --- a/home-configs/claude/statusline-command.sh +++ b/home-configs/claude/statusline-command.sh @@ -54,9 +54,9 @@ fi if [ -n "$ctx_pct" ]; then ctx_int=$(printf '%.0f' "$ctx_pct") - if [ "$ctx_int" -lt 30 ]; then + if [ "$ctx_int" -lt 40 ]; then ctx_color="\033[00;32m" - elif [ "$ctx_int" -lt 50 ]; then + elif [ "$ctx_int" -lt 60 ]; then ctx_color="\033[00;33m" else ctx_color="\033[00;31m"