Created
December 16, 2013 20:15
-
-
Save twik/7993600 to your computer and use it in GitHub Desktop.
How to install Consolas on Mac 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 | |
# makes the rendering of the font a bit thinner | |
defaults -currentHost write -globalDomain AppleFontSmoothing -int 0 | |
brew install cabextract | |
TEMP_DIR=`mktemp -dt "$0"` && cd $TEMP_DIR | |
curl -O http://download.microsoft.com/download/f/5/a/f5a3df76-d856-4a61-a6bd-722f52a5be26/PowerPointViewer.exe | |
cabextract PowerPointViewer.exe | |
cabextract ppviewer.cab | |
open CONSOLA*.TTF | |
cd - | |
rm -rf $TEMP_DIR | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment