Jump to content

Get Calibri and other new Microsoft Fonts


LiquidExil
 Share

1 post in this topic

Recommended Posts

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!"

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...