Advertisement
metalx1000

Load New Fonts ttf

Oct 9th, 2018
1,475
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.27 KB | None | 0 0
  1. #####load new fonts on Linux#####
  2.  
  3. ##for local user##
  4. #for system wide usage /usr/share/fonts/truetype/ should work
  5. #make font dir and move font files there
  6. mkdir -p $HOME/.local/share/fonts
  7. cp *.ttf $HOME/.local/share/fonts
  8.  
  9. #update fonts to system
  10. fc-cache -f -v
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement