https://github.com/luckman212/font-installer
Helper script to automate font installation on macOS
https://github.com/luckman212/font-installer
fonts install-script macos script
Last synced: 4 months ago
JSON representation
Helper script to automate font installation on macOS
- Host: GitHub
- URL: https://github.com/luckman212/font-installer
- Owner: luckman212
- Created: 2023-06-18T17:00:28.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-20T01:07:05.000Z (over 2 years ago)
- Last Synced: 2025-09-24T14:48:18.982Z (5 months ago)
- Topics: fonts, install-script, macos, script
- Language: Shell
- Homepage:
- Size: 83 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# font-installer
## What is this?
A small shell script to automate font installation on macOS.
In its current form, the script fetches the latest version of the JetBrains-Mono font from its [GitHub repo](https://github.com/JetBrains/JetBrainsMono), compares it with the locally-installed version and (if the versions don't match) downloads and installs the fonts.
## How to use
1. Download [the script](https://raw.githubusercontent.com/luckman212/font-installer/main/install-jetbrainsmono.sh)
2. Open a Terminal and make it executable: `chmod +x install-jetbrainsmono.sh`
3. Execute it: `./install-jetbrainsmono.sh`
## Notes
- Requires [Homebrew](https://brew.sh) to grab the 2 dependencies (`jq` to parse the GitHub API response and `otfinfo` to check the local font version info)
- Feel free to modify as needed
- Based on [this StackExchange post](https://apple.stackexchange.com/questions/460745/how-to-install-a-large-set-of-ttf-fonts)