aboutsummaryrefslogtreecommitdiff
path: root/utils/default-font.conf
blob: d7b43e2da384e52e45d3a7a27ee912bd908daea9 (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
<?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>Hack Nerd Font Mono</string>
            <string>Hack</string>
            <string>emoji</string>
            <string>emojione</string>
            <string>FuraCode Nerd Font Mono Medium</string>
            <string>FiraCode Retina Retina</string>
        </edit>
        <test name="slant" compare="not_eq"><const>italic</const></test>
        <edit mode="assign" name="style"><string>bold</string></edit>
    </match>
    <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)
    -->
..