s—0
title: How to install fonts in linux
date: 2020-06-10
tags:
- create a directory “fonts” in ~/.local/share/fonts
mkdir ~/.local/share/fonts
- copy fonts to this directory
cp -r *.ttf ~/.local/share/fonts
- clear and regenerate font cache
fc-cache -f -v
- verify the installation
`fc-list | grep “Hack”
- Cleanup
Shell script for autodoing things