Last active
June 13, 2020 16:35
-
-
Save purcell/da212af783564f852a1a7cedfc9884c9 to your computer and use it in GitHub Desktop.
Mac custom-build of Iosevka with Pragmata-like features
This file contains 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/sh -e | |
# https://github.com/be5invis/Iosevka#build-your-own-style | |
DIR=~/Projects/External/iosevka | |
if [ -d "$DIR" ]; then | |
(cd $DIR && git pull) | |
else | |
git clone --depth 1 https://github.com/be5invis/Iosevka $DIR | |
fi | |
cd "$DIR" | |
cat <<EOF > Brewfile | |
brew "npm" | |
brew "ttfautohint" | |
tap "caryll/tap" | |
brew "otfcc-mac64" | |
EOF | |
brew bundle install | |
brew bundle exec -- npm install | |
brew bundle exec -- make custom-config design='term ss08 ligset-haskell' | |
brew bundle exec -- make custom | |
cp dist/iosevka-custom/ttf/*.ttf ~/Library/Fonts/ |
Ugh, no idea about that, sorry @shanbhardwaj. I ran this script on a fresh machine earlier this week with no problems.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
brew bundle exec -- make custom-config design='ss08 ligset-haskell' is throwing the following error