Powerline-style status line for Claude Code with git info, context window usage, and Claude API usage.
╭ Claude Haiku ~/Projects/my-repo feat/my-branch ⇡2 !1
╰ ●●●●●○○○○○ 45% 24% 3h42m 8% 3d00h V8:59 ░▒▓ Fixing auth bug
Powerline-style status line for Claude Code with git info, context window usage, and Claude API usage.
╭ Claude Haiku ~/Projects/my-repo feat/my-branch ⇡2 !1
╰ ●●●●●○○○○○ 45% 24% 3h42m 8% 3d00h V8:59 ░▒▓ Fixing auth bug
| #!/bin/bash | |
| # Claude Code Model Configuration Script | |
| # Usage: cla [c] [claude options and commands] | |
| # Version: 0.7 | |
| # Gist: https://gist.github.com/orumad/89c3f6d27b09120c36347056f1a5fd11 | |
| set -e | |
| # Default values |
| # stop script on error signal | |
| set -e | |
| # remove old deployment folders | |
| if [ -d "/home/forge/deploy" ]; then | |
| rm -R /home/forge/deploy | |
| fi | |
| if [ -d "/home/forge/backup" ]; then | |
| rm -R /home/forge/backup | |
| fi |