Open git bash with admin privilege.
cd "C:/Program Files/Git/usr/share/mintty"
mkdir -p emojis
cd emojis
curl https://raw.githubusercontent.com/wiki/mintty/mintty/getemojis > getemojis
./getemojis -d| # Based on the Catppuccin theme for kitty | |
| # source https://github.com/catppuccin/kitty/blob/main/themes/mocha.conf | |
| # Add this file to your Git Bash Terminal theme directory | |
| # (e.g. C:\Program Files\Git\usr\share\mintty\themes). | |
| # Open Git Bash, right click on the terminal top bar and go to | |
| # Options../Looks/Theme to select the theme | |
| ForegroundColour=205,214,244 | |
| BackgroundColour=30,30,46 | |
| Black=69, 71, 90 |
Open git bash with admin privilege.
cd "C:/Program Files/Git/usr/share/mintty"
mkdir -p emojis
cd emojis
curl https://raw.githubusercontent.com/wiki/mintty/mintty/getemojis > getemojis
./getemojis -d| import logging | |
| from colorama import init, Fore, Back | |
| init(autoreset=True) | |
| class ColorFormatter(logging.Formatter): | |
| # Change this dictionary to suit your coloring needs! | |
| COLORS = { | |
| "WARNING": Fore.RED, |