| description |
|---|
Safely commit session changes without touching the staging area |
$ARGUMENTS
This command commits your session's changes without modifying the git index - safe for parallel agent work.
| #!/usr/bin/env python3 | |
| """ | |
| This script has moved to GitHub: | |
| https://github.com/benabraham/claude-code-status-line | |
| Please download the latest version from the repo: | |
| curl -o ~/.claude/claude-code-status-line.py https://raw.githubusercontent.com/benabraham/claude-code-status-line/main/claude-code-status-line.py | |
| """ | |
| print("\033[1m\033[38;5;220mThis statusline script has moved to GitHub:\033[0m") | |
| print("\033[1m https://github.com/benabraham/claude-code-status-line\033[0m") |
| #!/usr/bin/env python3 | |
| """ | |
| This script has moved to GitHub: | |
| https://github.com/benabraham/claude-code-status-line | |
| Please download the latest version from the repo: | |
| curl -o ~/.claude/claude-code-status-line.py https://raw.githubusercontent.com/benabraham/claude-code-status-line/main/claude-code-status-line.py | |
| """ | |
| print("\033[1m\033[38;5;220mThis statusline script has moved to GitHub:\033[0m") | |
| print("\033[1m https://github.com/benabraham/claude-code-status-line\033[0m") |
| @use "sass:math"; | |
| @function clampDimension( | |
| $minViewportWidthPx, | |
| $minDimensionRem, | |
| $maxViewportWidthPx, | |
| $maxDimensionRem, | |
| $remSize: 16px | |
| ) { | |
| $minWidth: math.div($minViewportWidthPx, $remSize); |
| .upload-detail-preview, | |
| .upload-dialog-thumbnail:has(.img), | |
| .FilePreview { | |
| background: repeating-conic-gradient(hsl(0 0% 60%) 0% 25%, hsl(0 0% 70%) 0% 50%) 50% / 20px 20px; | |
| } | |
| .info-filesize { | |
| color: white; | |
| } |
| // init variables globally | |
| // The !global flag (we use later) may only be used to set a variable | |
| // that has already been declared at the top level of a file. | |
| // It may not be used to declare a new variable. | |
| $w: null; | |
| $h: null; | |
| $p: null; | |
| $z: null; | |
| // create a new scope to work in |
| "scripts": { | |
| "_css-sass2css": "node-sass --source-map-embed true --precision 6 --source-map-root \"/\" ./scss/style.scss ./css-temp/style.css", | |
| "_css-postcss": "postcss ./css-temp/style.css --use autoprefixer --output ./css-temp/style.css", | |
| "_css-minify": "csso --input ./css-temp/style.css --output ./css-temp/style.css --source-map ./css-temp/style.css.map", | |
| "_css-move": "ncp ./css-temp/ ./css/", | |
| "_css-cleanup": "rimraf ./css-temp", | |
| "css-compile": "npm run _css-sass2css && npm run _css-postcss && npm run _css-minify && npm run _css-move && npm run _css-cleanup", | |
| } |