From 9bf870449b050c7f50f1dfbdaa5ded42f467683b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9B=B7=E7=94=B5=E8=8A=BD=E8=A1=A3?= Date: Tue, 25 Aug 2026 13:46:23 -0400 Subject: [PATCH] Link kimi into ~/.local/bin after the official install The installer only appends PATH to .bashrc, so the fresh binary was invisible to the launching process and the login never started. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01QKxGW1raAWaqeU8WdHsMsp --- bin/omarchy-cn-kimi-install | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/bin/omarchy-cn-kimi-install b/bin/omarchy-cn-kimi-install index 3c27e96f..2e39d435 100755 --- a/bin/omarchy-cn-kimi-install +++ b/bin/omarchy-cn-kimi-install @@ -13,3 +13,11 @@ installer=$(mktemp) trap 'rm -f "$installer"' EXIT curl -fsSL https://code.kimi.com/kimi-code/install.sh -o "$installer" bash "$installer" + +# The official installer only touches .bashrc PATH; expose kimi now +if [[ ! -x $HOME/.kimi-code/bin/kimi ]]; then + echo "kimi binary missing after the official installer" >&2 + exit 1 +fi +mkdir -p "$HOME/.local/bin" +ln -sf "$HOME/.kimi-code/bin/kimi" "$HOME/.local/bin/kimi"