-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfonts.conf
More file actions
30 lines (30 loc) · 916 Bytes
/
fonts.conf
File metadata and controls
30 lines (30 loc) · 916 Bytes
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
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<match target="font">
<test qual="any" name="family">
<string>Inconsolata for Powerline</string>
</test>
<!-- pixelsize or size -->
<test compare="more_eq" name="size" qual="any">
<double>1</double>
</test>
<test compare="less_eq" name="size" qual="any">
<double>11</double>
</test>
<edit name="autohint" mode="assign"><bool>false</bool></edit>
</match>
<match target="font">
<test qual="any" name="family">
<string>Inconsolata for Powerline</string>
</test>
<!-- pixelsize or size -->
<test compare="more_eq" name="pixelsize" qual="any">
<double>1</double>
</test>
<test compare="less_eq" name="pixelsize" qual="any">
<double>14</double>
</test>
<edit name="autohint" mode="assign"><bool>false</bool></edit>
</match>
</fontconfig>