Add fontconfig package to set 0xProto Nerd Font as default monospace

Without this, apps that fall back to fontconfig's generic 'monospace'
alias (rather than requesting the Nerd Font by name) don't pick up
the glyphs kitty/foot/waybar etc. rely on.
This commit is contained in:
2026-07-07 23:29:23 +02:00
parent 55eb10c69b
commit 22e0b707e8
2 changed files with 11 additions and 0 deletions
@@ -0,0 +1,10 @@
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<alias>
<family>monospace</family>
<prefer>
<family>0xProto Nerd Font</family>
</prefer>
</alias>
</fontconfig>