diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2019-05-08 21:21:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-08 21:21:40 -0400 |
| commit | 4b8d80ed67929e769b041c7de945cd8503231fef (patch) | |
| tree | c7746153748fc38c1cd70e553c1f36dd4fb0285e | |
| parent | a9ff1f56c75cb6e8836d59ea71324456e793a2b3 (diff) | |
| parent | c28d66bae8090ec7190430caa7ec750643065879 (diff) | |
| download | eibhear-4b8d80ed67929e769b041c7de945cd8503231fef.tar.gz eibhear-4b8d80ed67929e769b041c7de945cd8503231fef.tar.zst eibhear-4b8d80ed67929e769b041c7de945cd8503231fef.zip | |
Merge pull request #293 from pat-s/patch-1
Set Symbola as the fallback font for monospace fonts
| -rwxr-xr-x | .config/fontconfig/fonts.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.config/fontconfig/fonts.conf b/.config/fontconfig/fonts.conf index 1b460ed..6a78c25 100755 --- a/.config/fontconfig/fonts.conf +++ b/.config/fontconfig/fonts.conf @@ -19,6 +19,12 @@ <prefer><family>Inconsolata</family></prefer> </alias> + <!-- This sets Symbola as the final fallback font for the monospace font family. --> + <match target="pattern"> + <test name="family"><string>monospace</string></test> + <edit name="family" mode="append"><string>Symbola</string></edit> + </match> + </fontconfig> |
