summaryrefslogtreecommitdiff
path: root/dot_config/fontconfig
diff options
context:
space:
mode:
authorLibravatar Martin Michalec <martin@michalec.dev>2026-02-11 02:35:53 +0000
committerLibravatar Martin Michalec <martin@michalec.dev>2026-02-11 02:35:53 +0000
commita1adef9fc419a44d3cf360cc2a91e25e916ef2c9 (patch)
tree58525a66ca7db67b059fa64232afe3dc83c054c3 /dot_config/fontconfig
parentadd .ssh (diff)
downloaddotfiles-a1adef9fc419a44d3cf360cc2a91e25e916ef2c9.tar.gz
add fontconfig
Diffstat (limited to 'dot_config/fontconfig')
-rw-r--r--dot_config/fontconfig/fonts.conf37
1 files changed, 37 insertions, 0 deletions
diff --git a/dot_config/fontconfig/fonts.conf b/dot_config/fontconfig/fonts.conf
new file mode 100644
index 0000000..8e5141e
--- /dev/null
+++ b/dot_config/fontconfig/fonts.conf
@@ -0,0 +1,37 @@
1<?xml version='1.0'?>
2<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
3<fontconfig>
4 <dir>~/.local/share/fonts</dir>
5 <match>
6 <test name="family" compare="contains">
7 <string>sans-serif</string>
8 </test>
9 <edit name="family" mode="prepend" binding="strong">
10 <string>Aporetic Sans</string>
11 </edit>
12 </match>
13 <match>
14 <test name="family" compare="contains">
15 <string>serif</string>
16 </test>
17 <edit name="family" mode="prepend" binding="strong">
18 <string>Aporetic Serif</string>
19 </edit>
20 </match>
21 <match>
22 <test name="family" compare="contains">
23 <string>monospace</string>
24 </test>
25 <edit name="family" mode="prepend" binding="strong">
26 <string>Aporetic Serif Mono</string>
27 </edit>
28 </match>
29 <match>
30 <test name="family" compare="contains">
31 <string>emoji</string>
32 </test>
33 <edit name="family" mode="prepend" binding="strong">
34 <string>Noto Emoji</string>
35 </edit>
36 </match>
37</fontconfig>