Advertisement
Hienhm2212

Install source code pro font

Jun 16th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #!/usr/bin/env bash
  2. cd Downloads
  3. wget https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.zip
  4. if [ ! -d "~/.fonts" ] ; then
  5. mkdir ~/.fonts
  6. fi
  7. unzip 1.050R-it.zip
  8. cp source-code-pro-*-it/OTF/*.otf ~/.fonts/
  9. rm -rf source-code-pro*
  10. rm 1.050R-it.zip
  11. cd ~/
  12. fc-cache -f -v
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement