Skip to content

Commit

Permalink
quick patch for inconsolata error
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeSmithxyz committed Mar 22, 2020
1 parent b488156 commit f6659aa
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .config/fontconfig/fonts.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,33 @@
<family>serif</family>
<prefer>
<family>Linux Libertine</family>
<family>Noto Color Emoji</family>
<family>Joy Pixels</family>
<family>Noto Color Emoji</family>
</prefer>
</alias>
<alias>
<family>sans-serif</family>
<prefer>
<family>Linux Biolinum</family>
<family>Noto Color Emoji</family>
<family>Joy Pixels</family>
<family>Noto Color Emoji</family>
</prefer>
</alias>
<alias>
<family>sans</family>
<prefer>
<family>Linux Biolinum</family>
<family>Noto Color Emoji</family>
<family>Joy Pixels</family>
<family>Noto Color Emoji</family>
</prefer>
</alias>
<alias>
<family>monospace</family>
<prefer><family>Inconsolata</family></prefer>
<prefer>
<family>Liberation Mono</family>
<family>Inconsolata</family>
<family>Joy Pixels</family>
<family>Noto Color Emoji</family>
</prefer>
</alias>
</fontconfig>

2 comments on commit f6659aa

@rsynnest
Copy link

@rsynnest rsynnest commented on f6659aa Mar 23, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For anyone curious, this github issue discusses the Inconsolata bug. The root cause is a bug in XFT , which apparently is no longer maintained, but is used all over the Linux font world. Since XFT is no longer an active project, assuming nobody picks it up again, the eventual fix will be for programs such as emacs, st, dmenu, etc. to move away from XFT and use an alternative font rendering library like Cairo .

@aleksozolins
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just ran into this bug and glad I came upon this.

Please sign in to comment.