LiquidExil Posted November 18, 2010 Share Posted November 18, 2010 Well, since this is the only forum I can post in, here goes. Since finding out that I need the Calibri font for school, I set about trying to find it without paying for Microsoft Office. The fonts are included in the Microsoft OpenXML Converter package, but not installed unless the installer sees a full version of Microsoft Office Mac. SO, I wrote a quick script to download the package and extract the fonts into /Library/Fonts. Now you can view powerpoint and word files in iWork without formatting exploding due to sizing difference between Helvetica and Calibri. #Must be administrator! (I think) echo "Downloading Microsoft OpenXML Converter…" curl http://download.microsoft.com/download/1/5/8/158d6d58-43f8-4334-9d3f-479010fbcad7/OpenXMLConverter100.dmg > OpenXML.dmg echo "Mounting image…" hdid OpenXML.dmg echo "Unzipping fonts…" cp "/Volumes/Open XML File Format Converter for Mac 1.0/Open XML File Format Converter for Mac 1.0.mpkg/Contents/Packages/OpenXML_all_fonts.pkg/Contents/Archive.pax.gz" Archive.pax.gz gunzip "Archive.pax.gz" mkdir fonts mv Archive.pax fonts cd fonts pax -r -f Archive.pax echo "Moving fonts to /Library/Fonts/Microsoft/" mkdir /Library/Fonts/Microsoft rm -f Archive.pax mv * /Library/Fonts/Microsoft echo "Cleaning up…" umount "/Volumes/Open XML File Format Converter for Mac 1.0/" cd .. rm -f Archive.pax.gz rm -rf fonts rm -f OpenXML.dmg echo "Done! Restart your apps to enjoy your free Microsoft fonts!" Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.