惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hacker News: Front Page
P
Palo Alto Networks Blog
T
ThreatConnect
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
T
True Tiger Recordings
P
Privacy & Cybersecurity Law Blog
B
Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
F
Full Disclosure
Hacker News: Ask HN
Hacker News: Ask HN
C
Comments on: Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
N
News and Events Feed by Topic
NISL@THU
NISL@THU
腾讯CDC
雷峰网
雷峰网
Security Latest
Security Latest
李成银的技术随笔
M
Microsoft Research Blog - Microsoft Research
L
LangChain Blog
L
Lohrmann on Cybersecurity
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
C
Check Point Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
博客园 - Franky
N
News | PayPal Newsroom
V
V2EX
A
About on SuperTechFans
The Register - Security
The Register - Security
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google Online Security Blog
Google Online Security Blog
MyScale Blog
MyScale Blog
Cisco Talos Blog
Cisco Talos Blog
Vercel News
Vercel News
WordPress大学
WordPress大学
C
Cyber Attacks, Cyber Crime and Cyber Security
The Hacker News
The Hacker News
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
爱范儿
爱范儿
A
Arctic Wolf
L
LINUX DO - 最新话题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - _海阔天空

七牛云如何设置视频外链 GitHub项目推荐--GStack:将Claude Code转变为按需召唤的专业团队 openclaw安装 谷歌开源命令行神器 Gemini CLI claude hooks钩子使用 Windows下 claude skills superpowers、planning-with-files安装 Claude Code需求分析 Apifox 发请求时如何自动获取Cookie 和 token answer问答平台安装流程 torch轮子下载 Claude Code GLM-4.7 Trae 使用Trae配置MySQL MCP智能体进行数据库 oh my zsh 安装参考 Windows 解决PowerShell使用wget/curl出现二义性错误 - _海阔天空 解决rm: cannot remove `.user.ini’: Operation not permitted错误 deepseek使用集合 浏览器扩展 Zotero Connector - _海阔天空 使用Ollama本机部署Deepseek R1:14b sudo: apt-get: command not found
给 Claude Code 加了个状态栏,效率真的不一样!!
_海阔天空 · 2026-02-25 · via 博客园 - _海阔天空

给 Claude Code 加了个状态栏,效率真的不一样!!(必备)

ccstatusline:🚀 Beautiful highly customizable statusline for Claude Code CLI with powerline support, themes, and more. - AtomGit | GitCode

在ccstatusline配置文件里配置一下,在claude code终端最底下,把模型信息、Git 状态、token 使用量、会话时长、5 小时块计时这些关键信息集中显示出来

"~\.config\ccstatusline\settings.json"

{
  "version": 3,
  "lines": [
    [
      {
        "id": "1",
        "type": "model",
        "color": "cyan"
      },
      {
        "id": "2",
        "type": "separator"
      },
      {
        "id": "3",
        "type": "git-branch",
        "color": "magenta"
      },
      {
        "id": "4",
        "type": "separator"
      },
      {
        "id": "5",
        "type": "git-changes",
        "color": "yellow"
      },
      {
        "id": "6",
        "type": "separator"
      },
      {
        "id": "7",
        "type": "tokens-total",
        "color": "green"
      },
      {
        "id": "8",
        "type": "separator"
      },
      {
        "id": "9",
        "type": "context-percentage",
        "color": "brightBlack"
      }
    ],
    [
      {
        "id": "10",
        "type": "session-clock",
        "color": "blue"
      },
      {
        "id": "11",
        "type": "separator"
      },
      {
        "id": "12",
        "type": "block-timer",
        "color": "red"
      },
      {
        "id": "13",
        "type": "separator"
      },
      {
        "id": "14",
        "type": "session-cost",
        "color": "brightYellow"
      }
    ]
  ],
  "flexMode": "full-minus-40",
  "compactThreshold": 60,
  "colorLevel": 2,
  "inheritSeparatorColors": false,
  "globalBold": false,
  "powerline": {
    "enabled": false,
    "separators": [
      ""
    ],
    "separatorInvertBackground": [
      false
    ],
    "startCaps": [],
    "endCaps": [],
    "autoAlign": false
  }
}

image