this post was submitted on 02 Jan 2024
0 points (NaN% liked)

Linux

48316 readers
678 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Hey all. I'm using arch linux and after trying to fix my fonts to get nicer icons etc. in the terminal i've made a mess 😔 Any ideas on how to uninstall all the fonts and start fresh?

you are viewing a single comment's thread
view the rest of the comments
[–] Bankenstein@feddit.de 0 points 10 months ago* (last edited 10 months ago)

Trying to fix fonts is a very bad idea. If you want icons, either look into nerdfonts or use kitty as your terminal (with kitty you can map specific codepoints to specific fonts).

This could be an encoding problem, in which case you need to configure your terminal to use UTF-8 if it's using something else. If it really is the fonts themselves, I'd advise you to look through your installed packages and reinstall all the font-related ones (they probably all have ttf in the name).

You probably don't have to manually read the entire package list - you can use pacman -Qo /path/to/file to find out which package owns a file, do that to all your installed fonts, and reinstall those packages.

And don't forget to refresh the font cache with fc-cache -vf afterwards!