Skip to content

Instantly share code, notes, and snippets.

@marcora
Created September 15, 2015 03:24
Show Gist options
  • Save marcora/cb37b2432c072e8e9d77 to your computer and use it in GitHub Desktop.
Save marcora/cb37b2432c072e8e9d77 to your computer and use it in GitHub Desktop.
Install Adobe Source Code Pro font on Linux
#!/bin/sh
echo "installing fonts at $PWD to ~/.fonts/"
mkdir -p ~/.fonts/adobe-fonts/source-code-pro
git clone https://github.com/adobe-fonts/source-code-pro.git ~/.fonts/adobe-fonts/source-code-pro
# find ~/.fonts/ -iname '*.ttf' -exec echo \{\} \;
fc-cache -f -v ~/.fonts/adobe-fonts/source-code-pro
echo "finished installing"
@ThomasFrans
Copy link

Thanks, this was very helpful. Can't believe you have to manually install it on Kali. This helped a lot!

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