source: dotfiles/guix/.config/fontconfig/fonts.conf@ c39b1a4

Last change on this file since c39b1a4 was c39b1a4, checked in by Mikhail Kirillov <w96k.ru@…>, on Aug 30, 2019 at 1:47:39 AM

Add gnu stow categories

  • Property mode set to 100644
File size: 896 bytes
Line 
1<?xml version="1.0"?>
2<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
3<fontconfig>
4
5 <match>
6 <test name="family"><string>sans-serif</string></test>
7 <edit name="family" mode="prepend" binding="strong">
8 <string>Terminus</string>
9 </edit>
10 <edit name="family" mode="append" binding="strong">
11 <string>Terminus</string>
12
13 </edit>
14</match>
15<match>
16 <test name="family"><string>serif</string></test>
17 <edit name="family" mode="prepend" binding="strong">
18 <string>Terminus</string>
19 </edit>
20</match>
21<match>
22 <test name="family"><string>monospace</string></test>
23 <edit name="family" mode="prepend" binding="strong">
24 <string>Terminus</string>
25 </edit>
26</match>
27
28<match target="font">
29 <edit name="antialias" mode="assign">
30 <bool>true</bool>
31 </edit>
32 </match>
33 <match target="font">
34 <edit name="hinting" mode="assign">
35 <bool>true</bool>
36 </edit>
37 </match>
38
39</fontconfig>
Note: See TracBrowser for help on using the repository browser.