้่ฟๆญคๆไปถ่ฎฐๅฝๆฉๅฎน่ฟ็จใ Written by @xxrjun
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
| #!/bin/bash | |
| # Define block colors for commit frequencies | |
| COLORS=( | |
| "\033[48;5;232m\033[38;5;233m" # Black (no activity) | |
| "\033[48;5;22m" # Dark green (low activity) | |
| "\033[48;5;28m" # Medium green | |
| "\033[48;5;34m" # Lighter green | |
| "\033[48;5;40m" # Bright green (high activity) | |
| ) |
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
| # SGR color constants | |
| # rene-d 2018 | |
| class Colors: | |
| """ ANSI color codes """ | |
| BLACK = "\033[0;30m" | |
| RED = "\033[0;31m" | |
| GREEN = "\033[0;32m" | |
| BROWN = "\033[0;33m" | |
| BLUE = "\033[0;34m" |
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
| Other 33 hrs 47 mins โโโโโโโโโโโโโโโโโโโโโ 97.8% | |
| Python 30 mins โโโโโโโโโโโโโโโโโโโโโ 1.5% | |
| TOML 12 mins โโโโโโโโโโโโโโโโโโโโโ 0.6% | |
| Markdown 1 min โโโโโโโโโโโโโโโโโโโโโ 0.1% | |
| Bash 1 min โโโโโโโโโโโโโโโโโโโโโ 0.1% |