mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Blacklist Caskaydia nerd fonts (causes issues)
Caskaydia Nerd Fonts are automatically installed with `nerd-fonts-git` AUR package, however their presence seems to be causing issues with Material Symbols font. This then affects the eww bar, making the icons small. This is a pretty odd issue, but after some debugging, removing or blacklisting this font does resolve the issue. It seems that it's some font priority issue, however the eww bar clearly specifies which font to use, and the icons are correct, it's just the size that's weird (too small). This is just a hacky workaround, but it's probably a permanent one, unless I figure out what exactly is the cause of this and resolve it diferently, which I'm probably too lazy to get to.
This commit is contained in:
parent
312e27aa6b
commit
259d84b6cd
12
home/.config/fontconfig/fonts.conf
Normal file
12
home/.config/fontconfig/fonts.conf
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
|
||||
|
||||
<fontconfig>
|
||||
<description>Disable Caskaydia Cove Nerd Font</description>
|
||||
|
||||
<selectfont>
|
||||
<rejectfont>
|
||||
<glob>/usr/share/fonts/nerd-fonts-git/OTF/Caskaydia*</glob>
|
||||
</rejectfont>
|
||||
</selectfont>
|
||||
</fontcofig>
|
Loading…
Reference in a new issue