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
# Quick snip for injecting ANSI colors into bash scripts. Best used inside cat heredoc. | |
# | |
# Usage examples: | |
# cat << BOOKENDS | |
# ${blue}${bold}${underlined}Getting Started Guide:${nocolor} | |
# BOOKENDS | |
nocolor='[m' |
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 | |
[[ "$1" == --help ]] && SHOWHELP=1 | |
(( SHOWHELP )) && { | |
echo "usage: install-emojis [/path/to/instance]" | |
echo | |
echo "Installs emojis at the system level for use by mintty." | |
echo "The brand of emoji installed are the Noto emojis from https://github.com/googlefonts/noto-emoji.git" | |
exit |
OlderNewer