Advertisement
Guest User

ricty_installer.sh

a guest
Jan 20th, 2020
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.78 KB | None | 0 0
  1. #!/usr/bin/bash
  2.  
  3. # Ricty font install script
  4.  
  5. mkdir ricty_install
  6. cd ricty_install
  7. wget http://www.yusa.lab.uec.ac.jp/~yusa/ricty/ricty_generator.sh
  8. chmod +x ricty_generator.sh
  9. wget https://pastebin.com/raw/99vxCbua -o ricty_generator.patch
  10. wget https://raw.githubusercontent.com/google/fonts/master/ofl/inconsolata/Inconsolata-Bold.ttf
  11. wget https://raw.githubusercontent.com/google/fonts/master/ofl/inconsolata/Inconsolata-Regular.ttf
  12. wget http://iij.dl.sourceforge.jp/mix-mplus-ipa/59022/migu-1m-20130617.zip
  13. patch ricty_generator.sh < ricty_generator.patch
  14. unzip migu-1m-20130617.zip
  15. mv migu-1m-20130617/migu-1m-bold.ttf .
  16. mv migu-1m-20130617/migu-1m-regular.ttf .
  17. ./ricty_generator.sh auto
  18. mkdir -p ~/.local/share/fonts
  19. cp -f Ricty*.ttf ~/.local/share/fonts/
  20. fc-cache -vf
  21. cd ..
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement