Skip to main content
statuslinesSource-backedReview first Safety Privacy

Oh My Zsh Robbyrussell - Statuslines

A Claude Code statusline that recreates the Oh My Zsh robbyrussell theme: the cyan ➜ arrow, the working-directory basename, and git:(branch) with a red ✗ when the tree is dirty, plus the active model name. A bash script parses the status JSON with jq.

by JSONbored·added 2025-10-23·
HarnessClaude Code
Language:bash
Review first review before installing

Open the source and read safety notes before installing.

Citation facts

Source-backed facts for citing this resource, derived directly from the registry — also available as plain text for AI assistants.

Source URLs
https://github.com/ohmyzsh/ohmyzsh/wiki/Themes#robbyrussell, https://github.com/JSONbored/awesome-claude/blob/main/content/statuslines/oh-my-zsh-robbyrussell.mdx
Safety notes
Runs as a Claude Code statusline command on every refresh and depends on the local shell environment; a failure only affects status rendering, not your session.
Privacy notes
The script reads the workspace path, git branch, and dirty state from the Claude Code status JSON and your local repository to render the prompt; it only prints to your terminal and sends nothing over the network.
Author
JSONbored
Claim status
unclaimed
Last verified
2025-10-23

Decision playbook

Review trust signals before you adopt

Signals are present but mixed. Use the checklist below to confirm the source and operational safety for your environment.

Compare context
Selected

0

Current score

78

Baseline

Delta

No baseline selected

No major trust-signal divergence detected in the current selection.

Source and provenance checks

Complete

Confirm ownership and provenance before trusting install instructions.

  • Source link availableRequired

    Open the canonical repository and verify ownership.

    Done
  • Source provenance statusRequired

    Marked as source-backed.

    Done
  • Metadata reviewed

    Registry metadata indicates a reviewed listing.

    Done

Safety and privacy checks

Complete

Validate risk disclosures before installation or API wiring.

  • Safety notes presentRequired

    Review the listed safety guidance before running commands.

    Done
  • Privacy notes presentRequired

    Review data handling notes before connecting accounts or secrets.

    Done
  • Trust level risk gateRequired

    Trust level does not block evaluation.

    Done

Package and install checks

Needs review

Check package metadata and artifact integrity signals.

  • Install payload available

    Install or copy payload is available for review.

    Done
  • Package verification flag

    No package verification flag provided.

    Pending
  • Checksum metadata

    No checksum provided for downloaded artifact.

    Pending

Compare-driven decision checks

Needs review

Use compare context to validate trade-offs before adoption.

  • Compare tray has multiple entries

    Add at least one more entry to compare trust differences.

    Pending
  • Baseline comparison available

    No baseline peer selected yet.

    Pending
  • Diverging trust signals identified

    No major trust-signal divergence found.

    Pending

Setup at a glance

Config edit

Copy-ready — paste the snippet to get started.

Install command

Not provided

Config snippet

Provided

Copy snippet

Provided

Prerequisites

6 to clear

Platforms

1 listed

Difficulty

3/100

Adoption plan

Balanced adoption plan

Current risk score 16/100. Use staged verification before broader rollout.

Risk 16

Pre-adoption checks

Validate source and review signals before any execution.

  • Confirm source provenanceRequired

    Source URL/provenance metadata is present.

    Done
  • Confirm metadata review state

    Listing has review metadata.

    Done
  • Verify install payload

    Install/config payload exists and can be inspected.

    Done

Security checks

Confirm safety, privacy, and package integrity signals.

  • Review safety notesRequired

    Safety notes are present.

    Done
  • Review privacy notesRequired

    Privacy notes are present.

    Done
  • Verify package integrity metadata

    No package verification/checksum metadata.

    Pending

Rollout

Adopt in controlled steps based on the selected plan.

  • Run in isolated sandbox firstRequired

    Use a constrained sandbox and observe behavior across multiple tasks.

    Pending
  • Roll out graduallyRequired

    Roll out to a small cohort before wider usage.

    Pending
  • Set monitoring and fallback

    Define rollback path and monitor errors after adoption.

    Pending

Evidence readiness

Evidence readiness matrix · balanced

Required evidence gates are covered (5/6 signals complete).

Risk 15

Source provenance

Present

Source repository/provenance is listed.

Required in this preset

Metadata review

Present

Review metadata is present.

Required in this preset

Safety notes

Present

Safety notes are present.

Required in this preset

Privacy notes

Present

Privacy notes are present.

Optional in this preset

Package integrity

Missing

Package integrity metadata is missing.

Optional in this preset

Install payload

Present

Install payload is available.

Required in this preset

Required evidence gates are covered for this preset.

Decision timeline

Decision timeline · balanced

5/6 steps complete with no blocking gaps for this preset.

Risk 14

triage

Confirm source provenanceRequired

Source/provenance metadata is available.

Done

triage

Check metadata review statusRequired

Review metadata is available.

Done

verify

Review safety notesRequired

Safety notes are available.

Done

verify

Review privacy notes

Privacy notes are available.

Done

verify

Validate package integrity metadata

Package integrity metadata is missing.

Pending

rollout

Verify install payload and commandsRequired

Install payload is available.

Done

No required blockers for this timeline preset.

Prerequisite readiness

Prerequisite readiness

6 prerequisites to line up before setup.

0/6 ready
Install & runtime1Network & hosting2General3

Safety & privacy surface

Safety & privacy surface

1 safety and 1 privacy notes across 2 risk areas. Review closely: credentials & tokens, network access.

2 areas
  • SafetyCredentials & tokensRuns as a Claude Code statusline command on every refresh and depends on the local shell environment; a failure only affects status rendering, not your session.
  • PrivacyNetwork accessThe script reads the workspace path, git branch, and dirty state from the Claude Code status JSON and your local repository to render the prompt; it only prints to your terminal and sends nothing over the network.

Safety notes

  • Runs as a Claude Code statusline command on every refresh and depends on the local shell environment; a failure only affects status rendering, not your session.

Privacy notes

  • The script reads the workspace path, git branch, and dirty state from the Claude Code status JSON and your local repository to render the prompt; it only prints to your terminal and sends nothing over the network.

Prerequisites

  • Claude Code CLI installed and configured
  • Bash shell available (bash 4.0+ recommended for string manipulation and conditional logic)
  • jq command-line JSON processor (jq 1.6+ recommended for safe extraction with // defaults)
  • Git command (optional, for Git branch and status display - statusline works without Git)
  • Terminal with UTF-8 encoding support (required for Unicode arrow character: ➜ and checkmark: ✗)
  • Terminal with ANSI color code support (256-color mode recommended for authentic robbyrussell colors)

Schema details

Install type
config
Reading time
1 min
Difficulty score
3
Troubleshooting
Yes
Breaking changes
No
Skill and platform metadata
Retrieval sources
https://code.claude.com/docs/en/statuslinehttps://github.com/ohmyzsh/ohmyzsh/blob/master/themes/robbyrussell.zsh-themehttps://docs.claude.com/en/docs/claude-code/statusline
Runtime and command metadata
Script language
bash
Script body
#!/usr/bin/env bash

# Oh-My-Zsh Robbyrussell Theme Replica for Claude Code
# Classic robbyrussell prompt: ➜  directory git:(branch) ✗

# Read JSON from stdin
read -r input

# Extract values
dir=$(echo "$input" | jq -r '.workspace.path // "~"' | sed "s|$HOME|~|" | xargs basename)
model=$(echo "$input" | jq -r '.model // "unknown"')

# Git status
git_branch=""
git_dirty=""
if git rev-parse --git-dir > /dev/null 2>&1; then
  git_branch=$(git rev-parse --abbrev-ref HEAD 2>/dev/null)
  # Check for uncommitted changes
  if ! git diff --quiet 2>/dev/null || ! git diff --cached --quiet 2>/dev/null; then
    git_dirty="✗"
  fi
fi

# Colors (robbyrussell classic palette)
CYAN="\033[38;5;51m"       # Cyan for arrow and directory
GREEN="\033[38;5;82m"      # Green for clean git
YELLOW="\033[38;5;226m"    # Yellow for dirty git
RED="\033[38;5;196m"       # Red for dirty indicator
RESET="\033[0m"

# Build prompt (robbyrussell style)
prompt="${CYAN}➜${RESET}  "
prompt+="${CYAN}${dir}${RESET} "

if [ -n "$git_branch" ]; then
  if [ -n "$git_dirty" ]; then
    prompt+="${YELLOW}git:(${git_branch})${RESET} ${RED}${git_dirty}${RESET} "
  else
    prompt+="${GREEN}git:(${git_branch})${RESET} "
  fi
fi

# Add model info (Claude Code specific)
prompt+="${CYAN}[${model}]${RESET}"

echo -e "$prompt"
Full copyable content
{
  "statusLine": {
    "type": "command",
    "command": "$CLAUDE_PROJECT_DIR/.claude/statuslines/oh-my-zsh-robbyrussell.sh",
    "refreshInterval": 500
  }
}

About this resource

Features

  • Authentic Oh-My-Zsh robbyrussell theme aesthetics
  • Iconic ➜ arrow prompt character
  • Git branch display with parentheses format: git:(branch)
  • Dirty/clean Git status indicators (✗ for uncommitted changes)
  • Color-coded Git status: green (clean), yellow/red (dirty)
  • Directory basename display (matches zsh %c behavior)
  • Model name integration for Claude Code context
  • Zero dependencies beyond Git and jq

Use Cases

  • Oh-My-Zsh users wanting familiar prompt in Claude Code
  • Developers switching between shell and AI assistant frequently
  • Teams standardized on robbyrussell theme across tools
  • Visual continuity between terminal prompt and Claude statusline
  • Muscle memory from zsh prompt for instant context recognition
  • Onboarding new team members with familiar zsh prompt aesthetics

Requirements

  • Claude Code CLI installed and configured
  • Bash shell available (bash 4.0+ recommended for string manipulation and conditional logic)
  • jq command-line JSON processor (jq 1.6+ recommended for safe extraction with // defaults)
  • Git command (optional, for Git branch and status display - statusline works without Git)
  • Terminal with UTF-8 encoding support (required for Unicode arrow character: ➜ and checkmark: ✗)
  • Terminal with ANSI color code support (256-color mode recommended for authentic robbyrussell colors)

Configuration

{
  "statusLine": {
    "type": "command",
    "command": "$CLAUDE_PROJECT_DIR/.claude/statuslines/oh-my-zsh-robbyrussell.sh",
    "refreshInterval": 500
  }
}

Examples

Enhanced Oh My Zsh Robbyrussell with Exit Status

Extended version with exit status indicator matching original robbyrussell theme

#!/usr/bin/env bash

# Enhanced Oh-My-Zsh Robbyrussell Theme with Exit Status

read -r input

# Extract exit status from previous command (if available)
last_exit_status=${LAST_EXIT_STATUS:-0}

dir=$(echo "$input" | jq -r '.workspace.current_dir // .workspace.path // .cwd // "~"' | sed "s|$HOME|~|" | xargs basename)
model=$(echo "$input" | jq -r '.model.display_name // .model.id // "unknown"')

git_branch=""
git_dirty=""
if git rev-parse --git-dir > /dev/null 2>&1; then
  git_branch=$(git rev-parse --abbrev-ref HEAD 2>/dev/null || echo "")
  if ! git diff --quiet 2>/dev/null || ! git diff --cached --quiet 2>/dev/null; then
    git_dirty="✗"
  fi
fi

# Colors
CYAN="\033[38;5;51m"
GREEN="\033[38;5;82m"
YELLOW="\033[38;5;226m"
RED="\033[38;5;196m"
BOLD_GREEN="\033[1;38;5;82m"
BOLD_RED="\033[1;38;5;196m"
RESET="\033[0m"

# Arrow color based on exit status (robbyrussell style)
if [ $last_exit_status -eq 0 ]; then
  arrow_color="${BOLD_GREEN}"
else
  arrow_color="${BOLD_RED}"
fi

# Build prompt
prompt="${arrow_color}➜${RESET}  "
prompt+="${CYAN}${dir}${RESET} "

if [ -n "$git_branch" ]; then
  if [ -n "$git_dirty" ]; then
    prompt+="${YELLOW}git:(${git_branch})${RESET} ${RED}${git_dirty}${RESET} "
  else
    prompt+="${GREEN}git:(${git_branch})${RESET} "
  fi
fi

prompt+="${CYAN}[${model}]${RESET}"

echo -e "$prompt"

Oh My Zsh Robbyrussell with Full Path Option

Version with configurable directory display (basename vs full path)

#!/usr/bin/env bash

# Oh-My-Zsh Robbyrussell Theme with Full Path Option

read -r input

# Option to show full path (default: basename only, like robbyrussell)
SHOW_FULL_PATH=${ROBBYRUSSELL_FULL_PATH:-false}

dir=$(echo "$input" | jq -r '.workspace.current_dir // .workspace.path // .cwd // "~"' | sed "s|$HOME|~|")

if [ "$SHOW_FULL_PATH" != "true" ]; then
  dir=$(basename "$dir")
fi

model=$(echo "$input" | jq -r '.model.display_name // .model.id // "unknown"')

git_branch=""
git_dirty=""
if git rev-parse --git-dir > /dev/null 2>&1; then
  git_branch=$(git rev-parse --abbrev-ref HEAD 2>/dev/null || echo "")
  if ! git diff --quiet 2>/dev/null || ! git diff --cached --quiet 2>/dev/null; then
    git_dirty="✗"
  fi
fi

CYAN="\033[38;5;51m"
GREEN="\033[38;5;82m"
YELLOW="\033[38;5;226m"
RED="\033[38;5;196m"
RESET="\033[0m"

prompt="${CYAN}➜${RESET}  "
prompt+="${CYAN}${dir}${RESET} "

if [ -n "$git_branch" ]; then
  if [ -n "$git_dirty" ]; then
    prompt+="${YELLOW}git:(${git_branch})${RESET} ${RED}${git_dirty}${RESET} "
  else
    prompt+="${GREEN}git:(${git_branch})${RESET} "
  fi
fi

prompt+="${CYAN}[${model}]${RESET}"

echo -e "$prompt"

Oh My Zsh Robbyrussell Installation Example

Complete setup script with UTF-8 encoding verification and Unicode arrow character testing

#!/bin/bash
# Installation script for Oh My Zsh Robbyrussell Theme

# Check for jq (required for JSON parsing)
if ! command -v jq &> /dev/null; then
    echo "Installing jq for JSON parsing..."
    if [[ "$OSTYPE" == "darwin"* ]]; then
        brew install jq
    elif [[ "$OSTYPE" == "linux-gnu"* ]]; then
        sudo apt-get install -y jq || sudo yum install -y jq
    else
        echo "Please install jq manually: https://jqlang.github.io/jq/"
    fi
fi

# Check for Git (optional, for Git status display)
if ! command -v git &> /dev/null; then
    echo "Warning: Git not found - Git status will not be displayed"
    echo "Install Git: macOS (brew install git), Linux (sudo apt-get install git or sudo yum install git)"
else
    echo "Git command available: $(git --version)"
fi

# Verify UTF-8 encoding
if locale charmap 2>/dev/null | grep -q UTF-8; then
    echo "UTF-8 encoding verified"
else
    echo "Warning: UTF-8 encoding may not be enabled"
    echo "Set with: export LANG=en_US.UTF-8"
fi

# Test Unicode arrow character (➜)
if echo -e '➜' &> /dev/null; then
    echo "Unicode arrow character supported: ➜"
else
    echo "Warning: Unicode arrow character may not display correctly"
    echo "Terminal may need UTF-8 encoding"
fi

# Test Unicode checkmark/X (✗)
if echo -e '✗' &> /dev/null; then
    echo "Unicode checkmark/X character supported: ✗"
else
    echo "Warning: Unicode checkmark/X character may not display correctly"
fi

# Test basename command
if command -v basename &> /dev/null; then
    echo "basename command available"
else
    echo "Warning: basename command not found - directory display may not work"
fi

# Create statuslines directory
mkdir -p .claude/statuslines

cat > .claude/statuslines/oh-my-zsh-robbyrussell.sh << 'SCRIPT_EOF'
#!/usr/bin/env bash

# Oh-My-Zsh Robbyrussell Theme Replica for Claude Code
# Classic robbyrussell prompt: ➜  directory git:(branch) ✗

read -r input

dir=$(echo "$input" | jq -r '.workspace.current_dir // .workspace.path // .cwd // "~"' | sed "s|$HOME|~|" | xargs basename)
model=$(echo "$input" | jq -r '.model.display_name // .model.id // "unknown"')

git_branch=""
git_dirty=""
if git rev-parse --git-dir > /dev/null 2>&1; then
  git_branch=$(git rev-parse --abbrev-ref HEAD 2>/dev/null || echo "")
  if ! git diff --quiet 2>/dev/null || ! git diff --cached --quiet 2>/dev/null; then
    git_dirty="✗"
  fi
fi

CYAN="\033[38;5;51m"
GREEN="\033[38;5;82m"
YELLOW="\033[38;5;226m"
RED="\033[38;5;196m"
RESET="\033[0m"

prompt="${CYAN}➜${RESET}  "
prompt+="${CYAN}${dir}${RESET} "

if [ -n "$git_branch" ]; then
  if [ -n "$git_dirty" ]; then
    prompt+="${YELLOW}git:(${git_branch})${RESET} ${RED}${git_dirty}${RESET} "
  else
    prompt+="${GREEN}git:(${git_branch})${RESET} "
  fi
fi

prompt+="${CYAN}[${model}]${RESET}"

echo -e "$prompt"
SCRIPT_EOF

chmod +x .claude/statuslines/oh-my-zsh-robbyrussell.sh

# Add to settings.json
if [ ! -f .claude/settings.json ]; then
    echo '{"statusLine":{"type":"command","command":"$CLAUDE_PROJECT_DIR/.claude/statuslines/oh-my-zsh-robbyrussell.sh","refreshInterval":500}}' > .claude/settings.json
else
    jq '.statusLine = {"type":"command","command":"$CLAUDE_PROJECT_DIR/.claude/statuslines/oh-my-zsh-robbyrussell.sh","refreshInterval":500}' .claude/settings.json > .claude/settings.json.tmp
    mv .claude/settings.json.tmp .claude/settings.json
fi

echo "Oh My Zsh Robbyrussell Theme installed successfully!"
echo "Note: Ensure terminal supports UTF-8 encoding for arrow character (➜)"
echo "Test with: echo -e '➜'"

Troubleshooting

Arrow character (➜) showing as box or question mark

Ensure terminal uses UTF-8 encoding. Check: locale | grep UTF-8. Set if needed: export LANG=en_US.UTF-8. Verify font supports Unicode arrows (U+279C). Test: echo -e '➜'. Verify encoding: locale charmap (should be UTF-8). If not supported, modify script to use ASCII alternative: arrow='>'.

Git status always showing dirty (✗) even with clean repo

Check Git status manually: git status. Verify git diff commands work: git diff --quiet && echo clean (should return 0 for clean). Check staged changes: git diff --cached --quiet && echo clean. Ensure .gitignore not excluding modified files. Clear Git cache if needed: git rm -r --cached . && git add . (use with caution). Verify Git commands: git rev-parse --abbrev-ref HEAD (should return branch name).

Directory showing full path instead of basename only

Verify basename command available: which basename. Check sed command working: echo /foo/bar | sed 's|'$HOME'||' | xargs basename (should show 'bar'). Test jq extraction: echo '$input' | jq .workspace.current_dir. Verify xargs: echo 'test' | xargs basename (should return 'test'). Check if path is already basename: basename '/path/to/dir' (should return 'dir').

Colors incorrect or showing different shades than Oh-My-Zsh

Oh-My-Zsh uses 256-color codes. Verify terminal: tput colors (should be 256). Compare: echo -e '\033[38;5;51mCyan\033[0m' with zsh prompt. Adjust color codes if terminal palette differs. Check color codes: CYAN='\033[38;5;51m' (should be cyan), GREEN='\033[38;5;82m' (should be green). Test colors: echo -e '\033[38;5;51mTest\033[0m' (should show cyan text).

Git branch not detected despite being in repository

Check Git installed and in PATH: git --version. Verify in repo: git rev-parse --git-dir (should return .git path). Ensure script can execute git: which git. Test branch detection: git rev-parse --abbrev-ref HEAD (should return branch name). Check for detached HEAD: git rev-parse --abbrev-ref HEAD (may return HEAD if detached). Verify Git directory exists: ls -la .git (should show Git directory).

Model name showing as 'unknown' or incorrect

Check JSON field names: echo '$input' | jq .model.display_name (should return model name). Verify jq extraction: echo '$input' | jq -r '.model.display_name // .model.id // "unknown"'. Check if field exists: echo '$input' | jq 'has("model")'. Verify model field structure: echo '$input' | jq .model (should show object with id/display_name). Update script to check multiple field names if needed.

Checkmark/X character (✗) not displaying correctly

Verify terminal supports Unicode checkmark/X: echo -e '✗'. If not supported, replace with ASCII: gitdirty='' or gitdirty='X'. Check terminal encoding: locale charmap (should be UTF-8). Set encoding: export LANG=en_US.UTF-8. Test Unicode: echo -e '✗ ✓' (should display symbols). Alternative: Use ASCII characters like '' for dirty status.

Prompt format not matching Oh-My-Zsh robbyrussell exactly

Compare with original: Oh-My-Zsh robbyrussell uses '➜ %c git:(branch) ✗'. Verify spacing: prompt should have two spaces after arrow. Check format: '➜ directory git:(branch) ✗ [model]'. Verify color order: arrow (cyan), directory (cyan), git (green/yellow), dirty (red), model (cyan). Test full prompt: echo -e '\033[38;5;51m➜\033[0m \033[38;5;51mdir\033[0m \033[38;5;82mgit:(main)\033[0m'.

Source citations

Add this badge to your README

Show that Oh My Zsh Robbyrussell - Statuslines is listed on HeyClaude. Paste this Markdown into your README — it renders the badge and links back to this page.

Listed on HeyClaude
[![Listed on HeyClaude](https://heyclau.de/badge/statuslines/oh-my-zsh-robbyrussell.svg)](https://heyclau.de/entry/statuslines/oh-my-zsh-robbyrussell)

How it compares

Oh My Zsh Robbyrussell - Statuslines side by side with 3 alternatives on trust, install, platform support, and disclosed safety notes — all from reviewed registry metadata.

Field

A Claude Code statusline that recreates the Oh My Zsh robbyrussell theme: the cyan ➜ arrow, the working-directory basename, and git:(branch) with a red ✗ when the tree is dirty, plus the active model name. A bash script parses the status JSON with jq.

Open dossier

Soothing Catppuccin Mocha theme statusline with 26 pastel colors, Powerline separators, and modular segments for Git, model info, and token tracking.

Open dossier

Starship-inspired powerline statusline with Nerd Font glyphs, modular segments, and Git integration for Claude Code

Open dossier

WCAG-compliant accessible statusline with screen reader announcements, high-contrast colors, semantic labels, keyboard hints, and reduced motion support.

Open dossier
Next steps
Trust
Review statusReviewedMaintainer reviewedReviewedMaintainer reviewedReviewedMaintainer reviewedReviewedMaintainer reviewed
Package trustPackage not verifiedPackage not verifiedPackage not verifiedPackage not verified
Source provenanceSource-backedSource-backedSource-backedSource-backed
Submitter
Install riskReview firstReview firstReview firstReview first
Notes Safety Privacy Safety Privacy Safety Privacy Safety Privacy
Brand
Categorystatuslinesstatuslinesstatuslinesstatuslines
Sourcesource-backedsource-backedsource-backedsource-backed
AuthorJSONboredJSONboredJSONboredJSONbored
Added2025-10-232025-10-232025-10-162025-10-23
Platforms
Claude Code
Claude Code
Claude Code
Claude Code
Source repo
Safety notesRuns as a Claude Code statusline command on every refresh and depends on the local shell environment; a failure only affects status rendering, not your session.Runs as a Claude Code statusline command on every refresh and depends on the local shell environment; a failure only affects status rendering, not your session.Runs as a Claude Code statusline command on every refresh and depends on the local shell environment; a failure only affects status rendering, not your session.Runs as a Claude Code statusline command on every refresh and depends on the local shell environment; a failure only affects status rendering, not your session.
Privacy notesThe script reads the workspace path, git branch, and dirty state from the Claude Code status JSON and your local repository to render the prompt; it only prints to your terminal and sends nothing over the network.Reads the Claude Code statusline JSON from stdin (model, workspace path, token usage) and renders it in the local terminal; it does not send data off-machine.Reads the Claude Code statusline JSON from stdin (model, workspace path, token usage) and renders it in the local terminal; it does not send data off-machine.Reads the Claude Code statusline JSON from stdin (model, workspace path, token usage) and renders it in the local terminal; it does not send data off-machine.
Prerequisites
  • Claude Code CLI installed and configured
  • Bash shell available (bash 4.0+ recommended for string manipulation and conditional logic)
  • jq command-line JSON processor (jq 1.6+ recommended for safe extraction with // defaults)
  • Git command (optional, for Git branch and status display - statusline works without Git)
  • Claude Code CLI installed and configured
  • Bash shell available (bash 4.0+ recommended for string manipulation)
  • jq command-line JSON processor (jq 1.6+ recommended for safe extraction with // defaults)
  • Terminal with 256-color mode support (required for accurate Catppuccin Mocha palette reproduction)
  • Claude Code CLI installed and configured
  • Bash shell available (bash 4.0+ recommended for pattern matching and string manipulation)
  • jq command-line JSON processor (jq 1.6+ recommended for safe extraction with // defaults)
  • Git command (optional, for git branch and status display - git 2.0+ recommended)
  • Claude Code CLI installed and configured
  • Bash shell available (bash 4.0+ recommended)
  • jq command-line JSON processor (jq 1.6+ recommended for error handling)
  • Terminal with ANSI color code support
Install
Config
{
  "statusLine": {
    "type": "command",
    "command": "$CLAUDE_PROJECT_DIR/.claude/statuslines/oh-my-zsh-robbyrussell.sh",
    "refreshInterval": 500
  }
}
{
  "statusLine": {
    "type": "command",
    "command": "$CLAUDE_PROJECT_DIR/.claude/statuslines/catppuccin-mocha-theme.sh",
    "refreshInterval": 500
  }
}
{
  "statusLine": {
    "type": "command",
    "command": "$CLAUDE_PROJECT_DIR/.claude/statuslines/starship-powerline-theme.sh",
    "refreshInterval": 1000
  }
}
{
  "statusLine": {
    "type": "command",
    "command": "$CLAUDE_PROJECT_DIR/.claude/statuslines/accessibility-first-statusline.sh"
  }
}
Citations
ClaimUnclaimedUnclaimedUnclaimedUnclaimed
Open 4 picks in the interactive comparison tool

Signals

Loading live community signals…

More like this, weekly

A short, calm digest of reviewed Claude resources. Unsubscribe any time.