Last active
September 12, 2025 18:31
-
-
Save ivikash/0641ce3547b90b0855eb055d748a0a81 to your computer and use it in GitHub Desktop.
Install All Nerd Fonts in OSX
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 | |
| brew search '/font-.*-(nerd-font|nf)/' | awk '{ print $1 }' | while read font; do | |
| if ! brew install --cask --force "$font"; then | |
| echo "Failed to install $font, continuing..." | |
| fi | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment