-
-
Save sbseltzer/2e9c791bf8f57a388cfffc4dd92824db to your computer and use it in GitHub Desktop.
Installing Source Code Pro fonts in ubuntu
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
# to execute this gist, run the line bellow in terminal | |
\curl -L https://gist.githubusercontent.com/seltzy/2e9c791bf8f57a388cfffc4dd92824db/raw/1c100cae16a06bef154af0f290d665405b554b3b/install_source_code_pro.sh | sh |
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
Set objShell = CreateObject("Shell.Application") | |
Set objFolder = objShell.Namespace("<Folder or Share Location>") | |
Set objFolderItem = objFolder.ParseName("<TTF File Name>") | |
objFolderItem.InvokeVerb("Install") |
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
version=1.010 | |
echo "\n* Downloading version $version of source code pro font" | |
rm -f SourceCodePro_FontsOnly-$version.zip | |
rm -rf SourceCodePro_FontsOnly-$version | |
curl -L https://github.com/downloads/adobe/source-code-pro/SourceCodePro_FontsOnly-$version.zip > SourceCodePro_FontsOnly-$version.zip | |
echo "\n* Unziping package" | |
unzip SourceCodePro_FontsOnly-$version.zip | |
mkdir -p ~/.fonts | |
echo "\n* Copying fonts to ~/fonts" | |
cp SourceCodePro_FontsOnly-$version/OTF/*.otf ~/.fonts/ | |
echo "\n* Updating font cache" | |
sudo fc-cache -f -v | |
echo "\n* Looking for 'Source Code Pro' in installed fonts" | |
fc-list | grep "Source Code Pro" | |
echo "\n* Now, you can use the 'Source Code Pro' fonts, ** for sublime text ** just add the lines bellow to 'Preferences > Settings':" | |
echo '\n "font_face": "Source Code Pro",' | |
echo ' "font_size": 10' | |
echo "\n* Finished :)\n" |
I got half-way and got bored. Finish later for win10.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This didn't work for me in a new custom windows git bash environment. I should figure out why later.