This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @use "sass:math"; | |
| @function clampDimension( | |
| $minViewportWidthPx, | |
| $minDimensionRem, | |
| $maxViewportWidthPx, | |
| $maxDimensionRem, | |
| $remSize: 16px | |
| ) { | |
| $minWidth: math.div($minViewportWidthPx, $remSize); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "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", | |
| } |