Guest User

Untitled

a guest
Feb 16th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. wget https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.zip
  2.  
  3. unzip 1.050R-it.zip
  4.  
  5. mkdir -p ~/.fonts
  6.  
  7. cp source-code-pro-*-it/OTF/*.otf ~/.fonts/
  8.  
  9. fc-cache -f -v
  10.  
  11. #!/bin/bash
  12. set -euo pipefail
  13. I1FS=$'nt'
  14. mkdir -p /tmp/adodefont
  15. cd /tmp/adodefont
  16. wget -q --show-progress -O source-code-pro.zip https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.zip
  17. unzip -q source-code-pro.zip -d source-code-pro
  18. mkdir -p ~/.fonts
  19. cp -v source-code-pro/*/OTF/*.otf ~/.fonts/
  20. fc-cache -f
  21. rm -rf source-code-pro{,.zip}
  22.  
  23. mkdir -p ~/.fonts/Source_Code_Pro
  24. unzip Source_Code_Pro.zip -d ~/.fonts/Source_Code_Pro
  25.  
  26. fc-cache -f
  27.  
  28. #!/bin/bash
  29. FONT_NAME="SourceCodePro"
  30. URL="https://github.com/adobe-fonts/source-code-pro/archive/1.017R.zip"
  31.  
  32. mkdir /tmp/adodefont
  33. cd /tmp/adodefont
  34. wget ${URL} -O ${FONT_NAME}.zip
  35. unzip -o -j ${FONT_NAME}.zip
  36. mkdir -p ~/.fonts
  37. cp *.otf ~/.fonts
  38. fc-cache -f -v
  39.  
  40. #!/bin/bash
  41. mkdir /tmp/adodefont
  42. cd /tmp/adodefont
  43. wget https://github.com/adobe-fonts/source-code-pro/archive/1.017R.zip
  44. unzip 1.017R.zip
  45. mkdir -p ~/.fonts
  46. cp source-code-pro-1.017R/OTF/*.otf ~/.fonts/
  47. fc-cache -f -v
  48.  
  49. $ git clone https://github.com/powerline/fonts.git --depth=1
  50. $ cd fonts
  51. $ ./install.sh
Add Comment
Please, Sign In to add comment