install_nerd_fonts.sh is a Bash script that allows you to interactively select and install Nerd Fonts on macOS using Homebrew and fzf.
- Uses fzf for an interactive font selection.
- Installs selected Nerd Fonts via Homebrew.
| # Each distribution default Bash prompts | |
| # Gentoo (/etc/bash/bashrc) | |
| if [[ ${EUID} == 0 ]] ; then | |
| PS1='\[\033[01;31m\]\h\[\033[01;34m\] \W \$\[\033[00m\] ' | |
| else | |
| PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] ' | |
| fi |