Skip to content

Commit

Permalink
Merge pull request #338 from mariux64/add-etc-fonts-conf.d-44-mariux.…
Browse files Browse the repository at this point in the history
…conf

Add `etc/fonts/conf.d/44-mariux.conf`
  • Loading branch information
pmenzel authored Aug 9, 2023
2 parents 4456bf3 + f8805ac commit d346e8e
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions etc/fonts/conf.d/44-mariux.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- Replace generic bitmap font names by generic font families.
These font-families will get replaced by other rules and
default to scaled ones. -->
<match target="pattern">
<test name="family" qual="any">
<string>Helvetica</string>
</test>
<edit mode="assign" name="family">
<string>Arial</string>
<string>Liberation Sans</string>
<string>sans-serif</string>
</edit>
</match>
<match target="pattern">
<test name="family" qual="any">
<string>Courier</string>
</test>
<edit mode="assign" name="family">
<string>Courier New</string>
<string>Liberation Mono</string>
<string>monospace</string>
</edit>
</match>
<match target="pattern">
<test name="family" qual="any">
<string>Times</string>
</test>
<edit mode="assign" name="family">
<string>Times New Roman</string>
<string>Liberation Serif</string>
<string>serif</string>
</edit>
</match>

<alias>
<family>Minion</family>
<default><family>serif</family></default>
</alias>
</fontconfig>

0 comments on commit d346e8e

Please sign in to comment.