Skip to content

Instantly share code, notes, and snippets.

@nathansgreen
Forked from avalonalex/install consolas on mac
Last active October 12, 2022 08:31
Show Gist options
  • Save nathansgreen/13913914377cafe0188a to your computer and use it in GitHub Desktop.
Save nathansgreen/13913914377cafe0188a to your computer and use it in GitHub Desktop.
# Thanks to this post:
# http://blog.ikato.com/post/15675823000/how-to-install-consolas-font-on-mac-os-x
which cabextract>/dev/null || which brew>/dev/null || { echo Please install Homebrew!; exit 1; }
install() {
local url=https://sourceforge.net/projects/mscorefonts2/files/cabs/PowerPointViewer.exe
which cabextract>/dev/null || brew install cabextract
mkdir -P ~/tmp/consolas \
&& pushd ~/tmp/consolals \
&& curl -LO "${url}" \
&& cabextract PowerPointViewer.exe \
&& cabextract ppviewer.cab \
&& open CONSOLA*.TTF \
&& popd
}
install()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment