I installed Monaco font like it was described in this question but now I want to uninstall it.
How can I do this?
I installed Monaco font like it was described in this question but now I want to uninstall it.
How can I do this?
The script in that answer just downloads the font, moves it into the system's font directory and updates the cache. The relevant commands here are
sudo mv Monaco_Linux.ttf /usr/share/fonts/truetype/custom/
and
sudo fc-cache -f -v
In order to remove the font, just delete it:
sudo rm /usr/share/fonts/truetype/custom/Monaco_Linux.ttf
If the font is not gone after a restart of the program you're using, force a complete rebuild of the font cache:
sudo fc-cache -r -v