forked from mihaildolghintev/dotfiles-1
-
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.
- Loading branch information
1 parent
dc412f9
commit cd4df45
Showing
5 changed files
with
228 additions
and
156 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
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
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 |
---|---|---|
@@ -1,61 +1,71 @@ | ||
<?xml version='1.0'?> | ||
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | ||
<fontconfig> | ||
<!-- | ||
<!-- | ||
Accept deprecated 'mono' alias, replacing it with 'monospace' | ||
--> | ||
<match target="pattern"> | ||
<test qual="any" name="family"><string>mono</string></test> | ||
<edit name="family" mode="assign"><string>monospace</string></edit> | ||
</match> | ||
|
||
<!-- | ||
<match target="pattern"> | ||
<test qual="any" name="family"> | ||
<string>mono</string> | ||
</test> | ||
<edit name="family" mode="assign"> | ||
<string>monospace</string> | ||
</edit> | ||
</match> | ||
<!-- | ||
Names not including any well known alias are given 'sans-serif' | ||
--> | ||
<match target="pattern"> | ||
<test qual="all" name="family" compare="not_eq"><string>sans-serif</string></test> | ||
<test qual="all" name="family" compare="not_eq"><string>serif</string></test> | ||
<test qual="all" name="family" compare="not_eq"><string>monospace</string></test> | ||
<edit name="family" mode="append_last"><string>sans-serif</string></edit> | ||
</match> | ||
|
||
<!-- | ||
<match target="pattern"> | ||
<test qual="all" name="family" compare="not_eq"> | ||
<string>sans-serif</string> | ||
</test> | ||
<test qual="all" name="family" compare="not_eq"> | ||
<string>serif</string> | ||
</test> | ||
<test qual="all" name="family" compare="not_eq"> | ||
<string>monospace</string> | ||
</test> | ||
<edit name="family" mode="append_last"> | ||
<string>sans-serif</string> | ||
</edit> | ||
</match> | ||
<!-- | ||
Default Japanese font | ||
--> | ||
<match> | ||
<test compare="contains" name="lang"> | ||
<string>ja</string> | ||
</test> | ||
<edit mode="prepend" name="family"> | ||
<string>Noto Sans CJK JP</string> | ||
</edit> | ||
</match> | ||
|
||
<!-- | ||
<match> | ||
<test name="lang" compare="contains"> | ||
<string>ja</string> | ||
</test> | ||
<edit name="family" mode="prepend"> | ||
<string>Noto Sans CJK JP</string> | ||
</edit> | ||
</match> | ||
<!-- | ||
Default font | ||
--> | ||
<alias> | ||
<family>serif</family> | ||
<prefer> | ||
<family>Noto Serif</family> | ||
</prefer> | ||
</alias> | ||
<alias> | ||
<family>sans</family> | ||
<prefer> | ||
<family>Noto Sans</family> | ||
</prefer> | ||
</alias> | ||
<alias> | ||
<family>sans-serif</family> | ||
<prefer> | ||
<family>Noto Sans</family> | ||
</prefer> | ||
</alias> | ||
<alias> | ||
<family>monospace</family> | ||
<prefer> | ||
<family>Noto Sans Mono</family> | ||
</prefer> | ||
</alias> | ||
<alias> | ||
<family>serif</family> | ||
<prefer> | ||
<family>Noto Serif</family> | ||
</prefer> | ||
</alias> | ||
<alias> | ||
<family>sans</family> | ||
<prefer> | ||
<family>Noto Sans</family> | ||
</prefer> | ||
</alias> | ||
<alias> | ||
<family>sans-serif</family> | ||
<prefer> | ||
<family>Noto Sans</family> | ||
</prefer> | ||
</alias> | ||
<alias> | ||
<family>monospace</family> | ||
<prefer> | ||
<family>Noto Sans Mono</family> | ||
</prefer> | ||
</alias> | ||
<dir>~/.fonts</dir> | ||
</fontconfig> |
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
Oops, something went wrong.