Skip to content

Instantly share code, notes, and snippets.

@lucasdavila
Last active February 21, 2024 16:26
Show Gist options
  • Star 36 You must be signed in to star a gist
  • Fork 23 You must be signed in to fork a gist
  • Save lucasdavila/3875946 to your computer and use it in GitHub Desktop.
Save lucasdavila/3875946 to your computer and use it in GitHub Desktop.
Installing Source Code Pro fonts in ubuntu
# to execute this gist, run the line bellow in terminal
\curl -L https://raw.github.com/gist/3875946/install_source_code_pro.sh | sh
version=1.010
echo "\n* Downloading version $version of source code pro font"
rm -f SourceCodePro_FontsOnly-$version.zip
rm -rf SourceCodePro_FontsOnly-$version
wget https://github.com/downloads/adobe/source-code-pro/SourceCodePro_FontsOnly-$version.zip -O SourceCodePro_FontsOnly-$version.zip
echo "\n* Unziping package"
unzip SourceCodePro_FontsOnly-$version.zip
mkdir -p ~/.local/share/fonts
echo "\n* Copying fonts to ~/.local/share/fonts/"
cp SourceCodePro_FontsOnly-$version/OTF/*.otf ~/.local/share/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"
@MaicolBen
Copy link

This command doesn't work for me, it responds with '400 Invalid Request', but with curl to the raw code works for me: curl https://gist.githubusercontent.com/lucasdavila/3875946/raw/1c100cae16a06bef154af0f290d665405b554b3b/install_source_code_pro.sh | sh

@budmc29
Copy link

budmc29 commented Dec 11, 2015

@MaicolBen solution worked for me too.

@lucas-jones
Copy link

Perfect!

@soulawaker
Copy link

Excellent!

@YanYuanFE
Copy link

perfect!

@hhagblom
Copy link

Thanks for the script. on my setup of linux I had to add -O SourceCodePro_FontsOnly-$version.zip to the wget command, otherwise I would get a querystring on the downloaded file and the unzip command would not find it.

@amavlyanov
Copy link

@lucasdavila
Copy link
Author

Hi @amavlyanov

I am not using Ubuntu anymore, but I changed the script as you commented.

thanks.

@lucasdavila
Copy link
Author

@hhagblom also added the option you commented, thanks.

@amavlyanov
Copy link

Hi @amavlyanov

I am not using Ubuntu anymore, but I changed the script as you commented.

thanks.

that's not a ubuntu-specific rule.

thanks!

@amavlyanov
Copy link

btw, https://raw.github.com/gist/3875946/install_source_code_pro.sh gives 400 now. It might be removed.

@fleadope
Copy link

400 here as well...

@ianyepan
Copy link

ianyepan commented Apr 5, 2020

Same here, sh: 1: 400:: not found

@devlake
Copy link

devlake commented Jan 2, 2021

@cmcsouza
Copy link

Thanks!

@rossmeredith
Copy link

Doesn't work for me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment