Skip to content

Instantly share code, notes, and snippets.

@hadi77ir
Created March 13, 2017 16:02
Show Gist options
  • Select an option

  • Save hadi77ir/a6595e629512e7d6b5e19a5649285263 to your computer and use it in GitHub Desktop.

Select an option

Save hadi77ir/a6595e629512e7d6b5e19a5649285263 to your computer and use it in GitHub Desktop.
Installing Microsoft fonts on Ubuntu (and other Linux distros)
# Derived from ttf-ms-win8 package config (Arch AUR)
# Run with sudo, and pass the Windows fonts directory path as a parameter.
# By using this file and installing Microsoft fonts, you accept the Windows Fonts EULA.
if [[ `id -u` -ne 0 ]] ; then echo "Please run as root" ; exit 1 ; fi
echo "Creating target directory..."
DESTPATH=/usr/share/fonts/microsoft-fonts
mkdir $DESTPATH
COPY_TO_FONTFOLDER(){
echo "Copying $1..."
basefilename=`basename $1`
cp $1 "$DESTPATH/$basefilename"
}
COPY_TO_FONTFOLDER $1/arial.ttf
COPY_TO_FONTFOLDER $1/arialbd.ttf
COPY_TO_FONTFOLDER $1/ariali.ttf
COPY_TO_FONTFOLDER $1/arialbi.ttf
COPY_TO_FONTFOLDER $1/ariblk.ttf
COPY_TO_FONTFOLDER $1/comic.ttf
COPY_TO_FONTFOLDER $1/comicbd.ttf
COPY_TO_FONTFOLDER $1/comici.ttf
COPY_TO_FONTFOLDER $1/comicz.ttf
COPY_TO_FONTFOLDER $1/cour.ttf
COPY_TO_FONTFOLDER $1/courbd.ttf
COPY_TO_FONTFOLDER $1/couri.ttf
COPY_TO_FONTFOLDER $1/courbi.ttf
COPY_TO_FONTFOLDER $1/framd.ttf
COPY_TO_FONTFOLDER $1/framdit.ttf
COPY_TO_FONTFOLDER $1/Gabriola.ttf
COPY_TO_FONTFOLDER $1/georgia.ttf
COPY_TO_FONTFOLDER $1/georgiab.ttf
COPY_TO_FONTFOLDER $1/georgiai.ttf
COPY_TO_FONTFOLDER $1/georgiaz.ttf
COPY_TO_FONTFOLDER $1/impact.ttf
COPY_TO_FONTFOLDER $1/lucon.ttf
COPY_TO_FONTFOLDER $1/l_10646.ttf
COPY_TO_FONTFOLDER $1/marlett.ttf
COPY_TO_FONTFOLDER $1/micross.ttf
COPY_TO_FONTFOLDER $1/pala.ttf
COPY_TO_FONTFOLDER $1/palab.ttf
COPY_TO_FONTFOLDER $1/palai.ttf
COPY_TO_FONTFOLDER $1/palabi.ttf
COPY_TO_FONTFOLDER $1/segoepr.ttf
COPY_TO_FONTFOLDER $1/segoeprb.ttf
COPY_TO_FONTFOLDER $1/segoesc.ttf
COPY_TO_FONTFOLDER $1/segoescb.ttf
COPY_TO_FONTFOLDER $1/segoeui.ttf
COPY_TO_FONTFOLDER $1/segoeuib.ttf
COPY_TO_FONTFOLDER $1/segoeuii.ttf
COPY_TO_FONTFOLDER $1/segoeuiz.ttf
COPY_TO_FONTFOLDER $1/seguibl.ttf
COPY_TO_FONTFOLDER $1/seguibli.ttf
COPY_TO_FONTFOLDER $1/seguiemj.ttf
COPY_TO_FONTFOLDER $1/segoeuil.ttf
COPY_TO_FONTFOLDER $1/seguili.ttf
COPY_TO_FONTFOLDER $1/seguisb.ttf
COPY_TO_FONTFOLDER $1/seguisbi.ttf
COPY_TO_FONTFOLDER $1/segoeuisl.ttf
COPY_TO_FONTFOLDER $1/seguisli.ttf
COPY_TO_FONTFOLDER $1/seguisym.ttf
COPY_TO_FONTFOLDER $1/Sitka.ttc
COPY_TO_FONTFOLDER $1/SitkaB.ttc
COPY_TO_FONTFOLDER $1/SitkaI.ttc
COPY_TO_FONTFOLDER $1/SitkaZ.ttc
#Sitka.ttc
#SitkaB.ttc
#SitkaI.ttc
#SitkaZ.ttc
#Sitka.ttc
#SitkaB.ttc
#SitkaI.ttc
#SitkaZ.ttc
#Sitka.ttc
#SitkaB.ttc
#SitkaI.ttc
#SitkaZ.ttc
#Sitka.ttc
#SitkaB.ttc
#SitkaI.ttc
#SitkaZ.ttc
#Sitka.ttc
#SitkaB.ttc
#SitkaI.ttc
#SitkaZ.ttc
COPY_TO_FONTFOLDER $1/sylfaen.ttf
COPY_TO_FONTFOLDER $1/symbol.ttf
COPY_TO_FONTFOLDER $1/tahoma.ttf
COPY_TO_FONTFOLDER $1/tahomabd.ttf
COPY_TO_FONTFOLDER $1/times.ttf
COPY_TO_FONTFOLDER $1/timesbd.ttf
COPY_TO_FONTFOLDER $1/timesi.ttf
COPY_TO_FONTFOLDER $1/timesbi.ttf
COPY_TO_FONTFOLDER $1/trebuc.ttf
COPY_TO_FONTFOLDER $1/trebucbd.ttf
COPY_TO_FONTFOLDER $1/trebucit.ttf
COPY_TO_FONTFOLDER $1/trebucbi.ttf
COPY_TO_FONTFOLDER $1/verdana.ttf
COPY_TO_FONTFOLDER $1/verdanab.ttf
COPY_TO_FONTFOLDER $1/verdanai.ttf
COPY_TO_FONTFOLDER $1/verdanaz.ttf
COPY_TO_FONTFOLDER $1/webdings.ttf
COPY_TO_FONTFOLDER $1/wingding.ttf
#VistaFonts
COPY_TO_FONTFOLDER $1/calibri.ttf
COPY_TO_FONTFOLDER $1/calibrib.ttf
COPY_TO_FONTFOLDER $1/calibrii.ttf
COPY_TO_FONTFOLDER $1/calibriz.ttf
COPY_TO_FONTFOLDER $1/calibril.ttf
COPY_TO_FONTFOLDER $1/calibrili.ttf
COPY_TO_FONTFOLDER $1/cambria.ttc
COPY_TO_FONTFOLDER $1/cambriab.ttf
COPY_TO_FONTFOLDER $1/cambriai.ttf
COPY_TO_FONTFOLDER $1/cambriaz.ttf
#cambria.ttc
COPY_TO_FONTFOLDER $1/Candara.ttf
COPY_TO_FONTFOLDER $1/Candarab.ttf
COPY_TO_FONTFOLDER $1/Candarai.ttf
COPY_TO_FONTFOLDER $1/Candaraz.ttf
COPY_TO_FONTFOLDER $1/consola.ttf
COPY_TO_FONTFOLDER $1/consolab.ttf
COPY_TO_FONTFOLDER $1/consolai.ttf
COPY_TO_FONTFOLDER $1/consolaz.ttf
COPY_TO_FONTFOLDER $1/constan.ttf
COPY_TO_FONTFOLDER $1/constanb.ttf
COPY_TO_FONTFOLDER $1/constani.ttf
COPY_TO_FONTFOLDER $1/constanz.ttf
COPY_TO_FONTFOLDER $1/corbel.ttf
COPY_TO_FONTFOLDER $1/corbelb.ttf
COPY_TO_FONTFOLDER $1/corbeli.ttf
COPY_TO_FONTFOLDER $1/corbelz.ttf
#southeastasia
COPY_TO_FONTFOLDER $1/daunpenh.ttf
COPY_TO_FONTFOLDER $1/dokchamp.ttf
COPY_TO_FONTFOLDER $1/javatext.ttf
COPY_TO_FONTFOLDER $1/KhmerUI.ttf
COPY_TO_FONTFOLDER $1/KhmerUIb.ttf
COPY_TO_FONTFOLDER $1/LaoUI.ttf
COPY_TO_FONTFOLDER $1/LaoUIb.ttf
COPY_TO_FONTFOLDER $1/himalaya.ttf
COPY_TO_FONTFOLDER $1/ntailu.ttf
COPY_TO_FONTFOLDER $1/ntailub.ttf
COPY_TO_FONTFOLDER $1/phagspa.ttf
COPY_TO_FONTFOLDER $1/phagspab.ttf
COPY_TO_FONTFOLDER $1/taile.ttf
COPY_TO_FONTFOLDER $1/taileb.ttf
COPY_TO_FONTFOLDER $1/msuighur.ttf
COPY_TO_FONTFOLDER $1/msuighub.ttf
COPY_TO_FONTFOLDER $1/msyi.ttf
COPY_TO_FONTFOLDER $1/moolbor.ttf
COPY_TO_FONTFOLDER $1/monbaiti.ttf
COPY_TO_FONTFOLDER $1/mmrtext.ttf
COPY_TO_FONTFOLDER $1/mmrtextb.ttf
COPY_TO_FONTFOLDER $1/Nirmala.ttf
COPY_TO_FONTFOLDER $1/NirmalaB.ttf
COPY_TO_FONTFOLDER $1/NirmalaS.ttf
#Hindi
COPY_TO_FONTFOLDER $1/aparaj.ttf
COPY_TO_FONTFOLDER $1/aparajb.ttf
COPY_TO_FONTFOLDER $1/aparaji.ttf
COPY_TO_FONTFOLDER $1/aparajbi.ttf
COPY_TO_FONTFOLDER $1/gautami.ttf
COPY_TO_FONTFOLDER $1/gautamib.ttf
COPY_TO_FONTFOLDER $1/kalinga.ttf
COPY_TO_FONTFOLDER $1/kalingab.ttf
COPY_TO_FONTFOLDER $1/kartika.ttf
COPY_TO_FONTFOLDER $1/kartikab.ttf
COPY_TO_FONTFOLDER $1/kokila.ttf
COPY_TO_FONTFOLDER $1/kokilab.ttf
COPY_TO_FONTFOLDER $1/kokilai.ttf
COPY_TO_FONTFOLDER $1/kokilabi.ttf
COPY_TO_FONTFOLDER $1/latha.ttf
COPY_TO_FONTFOLDER $1/lathab.ttf
COPY_TO_FONTFOLDER $1/mangal.ttf
COPY_TO_FONTFOLDER $1/mangalb.ttf
COPY_TO_FONTFOLDER $1/raavi.ttf
COPY_TO_FONTFOLDER $1/raavib.ttf
COPY_TO_FONTFOLDER $1/shruti.ttf
COPY_TO_FONTFOLDER $1/shrutib.ttf
COPY_TO_FONTFOLDER $1/tunga.ttf
COPY_TO_FONTFOLDER $1/tungab.ttf
COPY_TO_FONTFOLDER $1/utsaah.ttf
COPY_TO_FONTFOLDER $1/utsaahb.ttf
COPY_TO_FONTFOLDER $1/utsaahi.ttf
COPY_TO_FONTFOLDER $1/utsaahbi.ttf
COPY_TO_FONTFOLDER $1/Vani.ttf
COPY_TO_FONTFOLDER $1/Vanib.ttf
COPY_TO_FONTFOLDER $1/vrinda.ttf
COPY_TO_FONTFOLDER $1/vrindab.ttf
COPY_TO_FONTFOLDER $1/vijaya.ttf
COPY_TO_FONTFOLDER $1/vijayab.ttf
COPY_TO_FONTFOLDER $1/Shonar.ttf
COPY_TO_FONTFOLDER $1/Shonarb.ttf
COPY_TO_FONTFOLDER $1/iskpota.ttf
COPY_TO_FONTFOLDER $1/iskpotab.ttf
#Chinese(Simplified)
COPY_TO_FONTFOLDER $1/simkai.ttf
COPY_TO_FONTFOLDER $1/simsun.ttc
COPY_TO_FONTFOLDER $1/simhei.ttf
#simsun.ttc
COPY_TO_FONTFOLDER $1/simsunb.ttf
COPY_TO_FONTFOLDER $1/simfang.ttf
COPY_TO_FONTFOLDER $1/msyh.ttc
COPY_TO_FONTFOLDER $1/msyhbd.ttc
COPY_TO_FONTFOLDER $1/msyhl.ttc
#msyh.ttc
#msyhbd.ttc
#msyhl.ttc
#Chinese(Traditional)
COPY_TO_FONTFOLDER $1/kaiu.ttf
COPY_TO_FONTFOLDER $1/msjh.ttc
COPY_TO_FONTFOLDER $1/msjhbd.ttc
COPY_TO_FONTFOLDER $1/msjhl.ttc
#msjh.ttc
#msjhbd.ttc
#msjhl.ttc
COPY_TO_FONTFOLDER $1/mingliu.ttc
#mingliu.ttc
COPY_TO_FONTFOLDER $1/mingliub.ttc
#mingliub.ttc
#mingliu.ttc
#mingliub.ttc
#JAPANESE
COPY_TO_FONTFOLDER $1/meiryo.ttc
COPY_TO_FONTFOLDER $1/meiryob.ttc
#meiryo.ttc
#meiryob.ttc
#meiryo.ttc
COPY_TO_FONTFOLDER $1/meiryob.ttc
COPY_TO_FONTFOLDER $1/meiryo.ttc
COPY_TO_FONTFOLDER $1/meiryob.ttc
COPY_TO_FONTFOLDER $1/msgothic.ttc
COPY_TO_FONTFOLDER $1/msmincho.ttc
#msgothic.ttc
#msmincho.ttc
#msgothic.ttc
COPY_TO_FONTFOLDER $1/yugothic.ttf
COPY_TO_FONTFOLDER $1/yugothib.ttf
COPY_TO_FONTFOLDER $1/yugothil.ttf
COPY_TO_FONTFOLDER $1/yumindb.ttf
COPY_TO_FONTFOLDER $1/yuminl.ttf
COPY_TO_FONTFOLDER $1/yumin.ttf
#Korean
COPY_TO_FONTFOLDER $1/batang.ttc
#batang.ttc
COPY_TO_FONTFOLDER $1/gulim.ttc
#gulim.ttc
#gulim.ttc
#gulim.ttc
#batang.ttc
#batang.ttc
COPY_TO_FONTFOLDER $1/malgun.ttf
COPY_TO_FONTFOLDER $1/malgunbd.ttf
#ARABIC
COPY_TO_FONTFOLDER $1/aldhabi.ttf
COPY_TO_FONTFOLDER $1/andlso.ttf
COPY_TO_FONTFOLDER $1/arabtype.ttf
COPY_TO_FONTFOLDER $1/majalla.ttf
COPY_TO_FONTFOLDER $1/majallab.ttf
COPY_TO_FONTFOLDER $1/simpo.ttf
COPY_TO_FONTFOLDER $1/simpbdo.ttf
COPY_TO_FONTFOLDER $1/simpfxo.ttf
COPY_TO_FONTFOLDER $1/trado.ttf
COPY_TO_FONTFOLDER $1/tradbdo.ttf
COPY_TO_FONTFOLDER $1/UrdType.ttf
COPY_TO_FONTFOLDER $1/UrdTypeb.ttf
#HEBREW
COPY_TO_FONTFOLDER $1/ahronbd.ttf
COPY_TO_FONTFOLDER $1/david.ttf
COPY_TO_FONTFOLDER $1/davidbd.ttf
COPY_TO_FONTFOLDER $1/frank.ttf
COPY_TO_FONTFOLDER $1/gisha.ttf
COPY_TO_FONTFOLDER $1/gishabd.ttf
COPY_TO_FONTFOLDER $1/lvnm.ttf
COPY_TO_FONTFOLDER $1/lvnmbd.ttf
COPY_TO_FONTFOLDER $1/mriam.ttf
COPY_TO_FONTFOLDER $1/mriamc.ttf
COPY_TO_FONTFOLDER $1/nrkis.ttf
COPY_TO_FONTFOLDER $1/rod.ttf
#THAI
COPY_TO_FONTFOLDER $1/angsa.ttf
COPY_TO_FONTFOLDER $1/angsab.ttf
COPY_TO_FONTFOLDER $1/angsai.ttf
COPY_TO_FONTFOLDER $1/angsaz.ttf
COPY_TO_FONTFOLDER $1/angsau.ttf
COPY_TO_FONTFOLDER $1/angsaub.ttf
COPY_TO_FONTFOLDER $1/angsaui.ttf
COPY_TO_FONTFOLDER $1/angsauz.ttf
COPY_TO_FONTFOLDER $1/browa.ttf
COPY_TO_FONTFOLDER $1/browab.ttf
COPY_TO_FONTFOLDER $1/browai.ttf
COPY_TO_FONTFOLDER $1/browaz.ttf
COPY_TO_FONTFOLDER $1/browau.ttf
COPY_TO_FONTFOLDER $1/browaub.ttf
COPY_TO_FONTFOLDER $1/browaui.ttf
COPY_TO_FONTFOLDER $1/browauz.ttf
COPY_TO_FONTFOLDER $1/cordia.ttf
COPY_TO_FONTFOLDER $1/cordiab.ttf
COPY_TO_FONTFOLDER $1/cordiai.ttf
COPY_TO_FONTFOLDER $1/cordiaz.ttf
COPY_TO_FONTFOLDER $1/cordiau.ttf
COPY_TO_FONTFOLDER $1/cordiaub.ttf
COPY_TO_FONTFOLDER $1/cordiaui.ttf
COPY_TO_FONTFOLDER $1/cordiauz.ttf
COPY_TO_FONTFOLDER $1/upcdl.ttf
COPY_TO_FONTFOLDER $1/upcdb.ttf
COPY_TO_FONTFOLDER $1/upcdi.ttf
COPY_TO_FONTFOLDER $1/upcdbi.ttf
COPY_TO_FONTFOLDER $1/upcel.ttf
COPY_TO_FONTFOLDER $1/upceb.ttf
COPY_TO_FONTFOLDER $1/upcei.ttf
COPY_TO_FONTFOLDER $1/upcebi.ttf
COPY_TO_FONTFOLDER $1/upcfl.ttf
COPY_TO_FONTFOLDER $1/upcfb.ttf
COPY_TO_FONTFOLDER $1/upcfi.ttf
COPY_TO_FONTFOLDER $1/upcfbi.ttf
COPY_TO_FONTFOLDER $1/upcil.ttf
COPY_TO_FONTFOLDER $1/upcib.ttf
COPY_TO_FONTFOLDER $1/upcii.ttf
COPY_TO_FONTFOLDER $1/upcibi.ttf
COPY_TO_FONTFOLDER $1/upcjl.ttf
COPY_TO_FONTFOLDER $1/upcjb.ttf
COPY_TO_FONTFOLDER $1/upcji.ttf
COPY_TO_FONTFOLDER $1/upcjbi.ttf
COPY_TO_FONTFOLDER $1/upckl.ttf
COPY_TO_FONTFOLDER $1/upckb.ttf
COPY_TO_FONTFOLDER $1/upcki.ttf
COPY_TO_FONTFOLDER $1/upckbi.ttf
COPY_TO_FONTFOLDER $1/leelawad.ttf
COPY_TO_FONTFOLDER $1/leelawdb.ttf
COPY_TO_FONTFOLDER $1/LeelawUI.ttf
COPY_TO_FONTFOLDER $1/LeelaUIb.ttf
COPY_TO_FONTFOLDER $1/LeelUIsl.ttf
COPY_TO_FONTFOLDER $1/upcll.ttf
COPY_TO_FONTFOLDER $1/upclb.ttf
COPY_TO_FONTFOLDER $1/upcli.ttf
COPY_TO_FONTFOLDER $1/upclbi.ttf
#AFRICAN
COPY_TO_FONTFOLDER $1/ebrima.ttf
COPY_TO_FONTFOLDER $1/ebrimabd.ttf
COPY_TO_FONTFOLDER $1/estre.ttf
COPY_TO_FONTFOLDER $1/euphemia.ttf
COPY_TO_FONTFOLDER $1/gadugi.ttf
COPY_TO_FONTFOLDER $1/gadugib.ttf
COPY_TO_FONTFOLDER $1/nyala.ttf
COPY_TO_FONTFOLDER $1/plantc.ttf
COPY_TO_FONTFOLDER $1/mvboli.ttf
echo "Refreshing Font cache..."
fc-cache -f -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment