Configure CCometixLine for Claude Code
masterTo integrate CCometixLine as a statusline in Claude Code, add a statusLine configuration to your Claude Code settings.json file.
Cross-Platform (Recommended)
This method uses a path relative to the user home directory and is recommended for all platforms, including Windows (v2.1.47+).
{
"statusLine": {
"type": "command",
"command": "~/.claude/ccline/ccline",
"padding": 0
}
}Note for Windows users: Do not use %USERPROFILE%. Starting from Claude Code v2.1.47+, the ~ symbol is automatically expanded to your user home directory and is the most reliable method.
Fallback (npm installation)
If you have installed via npm and ccline is in your system PATH, use this configuration:
{
"statusLine": {
"type": "command",
"command": "ccline",
"padding": 0
}
}{
"statusLine": {
"type": "command",
"command": "~/.claude/ccline/ccline",
"padding": 0
}
}