-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #338 from mariux64/add-etc-fonts-conf.d-44-mariux.…
…conf Add `etc/fonts/conf.d/44-mariux.conf`
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |