fc-list: list available fonts on the system
ยท
151 words
ยท
1 minute read
What is fc-list ? ๐
List available fonts installed on the system.
Usage ๐
Return a list of installed fonts in your system:
fc-list
Return a list of installed fonts with given name:
fc-list | grep 'DejaVu Serif'
Return the number of installed fonts in your system:
fc-list | wc -l
Return a list of installed fonts that support the language based on its locale code:
fc-list :lang=jp
Return a list of installed fonts that contain the glyph specified by its Unicode code-point:
fc-list :charset=f303
For more information, check out the man page of fc-list: https://manned.org/fc-list .
I hope you enjoyed reading this post as much as I enjoyed writing it. If you know a person who can benefit from this information, send them a link of this post. If you want to get notified about new posts, follow me on YouTube , Twitter (x) , LinkedIn , and GitHub .