Created
March 4, 2017 03:38
-
Star
(105)
You must be signed in to star a gist -
Fork
(20)
You must be signed in to fork a gist
-
-
Save enzinier/8d00d3f37d2e23985dcfa65662d163fa to your computer and use it in GitHub Desktop.
Install font Adobe Source Code Pro on Ubuntu 16.04 LTS
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
#!/bin/sh | |
# Userland mode (~$USER/), (~/). | |
# ~/.fonts is now deprecated and that | |
#FONT_HOME=~/.fonts | |
# ~/.local/share/fonts should be used instead | |
FONT_HOME=~/.local/share/fonts | |
echo "installing fonts at $PWD to $FONT_HOME" | |
mkdir -p "$FONT_HOME/adobe-fonts/source-code-pro" | |
# find "$FONT_HOME" -iname '*.ttf' -exec echo '{}' \; | |
(git clone \ | |
--branch release \ | |
--depth 1 \ | |
'https://github.com/adobe-fonts/source-code-pro.git' \ | |
"$FONT_HOME/adobe-fonts/source-code-pro" && \ | |
fc-cache -f -v "$FONT_HOME/adobe-fonts/source-code-pro") |
Works like expected, thanks for sharing :)
Worked. Thank you.
Also worked for me on Ubuntu 18.04. Thank you!
Worked for me in Ubuntu 19.10. Thank you.
how can i install it
Works on Ubuntu 20.04. Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks so much. It worked for me using LUbuntu.