blob: b77c0f182f240dc4cc5ab44603b92f7bb3fd82c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
<?xml version="1.0"?>
<!-- this is a configuration file for fontconfig and should be copied or linked to ~/.config/fontconfig/fonts.conf -->
<!DOCTYPE fontconfig SYSTEM "/etc/fonts/fonts.dtd">
<fontconfig>
<match target="pattern">
<test name="family"><string>monospace</string></test>
<edit name="family" mode="prepend">
<!--<string>Iosevka Term SS04</string>-->
<string>FuraCode Nerd Font Mono Medium</string>
<string>FiraCode Nerd Font</string>
<string>FuraCode Nerd Font</string>
<string>Noto Color Emoji</string>
</edit>
<edit name="fontfeatures" mode="append">
<string>liga on</string>
<string>dlig on</string>
</edit>
<test name="slant" compare="not_eq"><const>italic</const></test>
<edit mode="assign" name="style"><string>bold</string></edit>
</match>
<!-- Block Symbola from the list of fallback fonts. -->
<selectfont>
<rejectfont>
<pattern>
<patelt name="family">
<string>Symbola</string>
</patelt>
</pattern>
</rejectfont>
</selectfont>
<match target="pattern">
<test name="family"><string>serif</string></test>
<edit name="family" mode="prepend">
<string>Noto Serif</string>
</edit>
</match>
<match target="pattern">
<test name="family"><string>sans-serif</string></test>
<edit name="family" mode="prepend">
<string>Noto Sans</string>
</edit>
</match>
<match target="pattern">
<edit name="dpi" mode="assign"><double>102</double></edit>
</match>
</fontconfig>
<!--
family: "Anonymous Pro for Powerline"(s)
family: "Consolas for Powerline"(s) "Consolas for Powerline FixedD"(s)
family: "DejaVu Sans Mono for Powerline"(s)
family: "Droid Sans Mono for Powerline"(s)
family: "Inconsolata for Powerline"(s)
family: "Inconsolata-dz for Powerline"(s)
family: "Liberation Mono for Powerline"(s)
family: "Menlo for Powerline"(s)
family: "Meslo LG L DZ for Powerline"(s)
family: "Meslo LG L for Powerline"(s)
family: "Meslo LG M DZ for Powerline"(s)
family: "Meslo LG M for Powerline"(s)
family: "Meslo LG S DZ for Powerline"(s)
family: "Meslo LG S for Powerline"(s)
family: "PowerlineSymbols"(s)
family: "Source Code Pro for Powerline"(s)
family: "Source Code Pro for Powerline"(s) "Source Code Pro Black"(s)
family: "Source Code Pro for Powerline"(s) "Source Code Pro ExtraLight"(s)
family: "Source Code Pro for Powerline"(s) "Source Code Pro Light"(s)
family: "Source Code Pro for Powerline"(s) "Source Code Pro Medium"(s)
family: "Source Code Pro for Powerline"(s) "Source Code Pro Semibold"(s)
family: "Terminus for Powerline"(s)
family: "Ubuntu Mono derivative Powerline"(s)
family: "xos4 Terminess Powerline"(s)
family: "xos4 Terminus for Powerline"(s)
-->
|