golden hour
/usr/share/fontconfig/conf.avail
⬆️ Go Up
Upload
File/Folder
Size
Actions
10-autohint.conf
484 B
Del
OK
10-hinting-full.conf
461 B
Del
OK
10-hinting-medium.conf
463 B
Del
OK
10-hinting-none.conf
461 B
Del
OK
10-hinting-slight.conf
463 B
Del
OK
10-no-sub-pixel.conf
491 B
Del
OK
10-scale-bitmap-fonts.conf
1.96 KB
Del
OK
10-sub-pixel-bgr.conf
489 B
Del
OK
10-sub-pixel-rgb.conf
489 B
Del
OK
10-sub-pixel-vbgr.conf
490 B
Del
OK
10-sub-pixel-vrgb.conf
490 B
Del
OK
10-unhinted.conf
481 B
Del
OK
11-lcdfilter-default.conf
526 B
Del
OK
11-lcdfilter-legacy.conf
524 B
Del
OK
11-lcdfilter-light.conf
522 B
Del
OK
20-unhint-small-dejavu-sans-mono.conf
866 B
Del
OK
20-unhint-small-dejavu-sans.conf
856 B
Del
OK
20-unhint-small-vera.conf
1.23 KB
Del
OK
25-unhint-nonlatin.conf
3.18 KB
Del
OK
30-metric-aliases.conf
13.19 KB
Del
OK
30-urw-aliases.conf
889 B
Del
OK
40-nonlatin.conf
5.06 KB
Del
OK
45-generic.conf
3.22 KB
Del
OK
45-latin.conf
6.21 KB
Del
OK
49-sansserif.conf
545 B
Del
OK
50-user.conf
673 B
Del
OK
51-local.conf
189 B
Del
OK
57-dejavu-sans-mono.conf
1.47 KB
Del
OK
57-dejavu-sans.conf
1.96 KB
Del
OK
59-liberation-mono.conf
482 B
Del
OK
60-generic.conf
1.75 KB
Del
OK
60-latin.conf
1.79 KB
Del
OK
61-urw-bookman.conf
1021 B
Del
OK
61-urw-c059.conf
1003 B
Del
OK
61-urw-d050000l.conf
1022 B
Del
OK
61-urw-fallback-backwards.conf
3.18 KB
Del
OK
61-urw-gothic.conf
913 B
Del
OK
61-urw-nimbus-mono-ps.conf
899 B
Del
OK
61-urw-nimbus-roman.conf
877 B
Del
OK
61-urw-nimbus-sans.conf
1.54 KB
Del
OK
61-urw-p052.conf
975 B
Del
OK
61-urw-standard-symbols-ps.conf
1.04 KB
Del
OK
61-urw-z003.conf
865 B
Del
OK
65-fonts-persian.conf
9.88 KB
Del
OK
65-khmer.conf
289 B
Del
OK
65-nonlatin.conf
7.75 KB
Del
OK
69-unifont.conf
672 B
Del
OK
70-no-bitmaps.conf
263 B
Del
OK
70-yes-bitmaps.conf
263 B
Del
OK
80-delicious.conf
422 B
Del
OK
90-synthetic.conf
1.7 KB
Del
OK
Edit: 10-scale-bitmap-fonts.conf
<?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <!-- If font is bitmap, calculate scale factor. Note that color bitmap fonts have scalable=true, while non-color ones have scalable=false. Both groups have outline=false. --> <match target="font"> <test name="outline" compare="eq"> <bool>false</bool> </test> <edit name="pixelsizefixupfactor" mode="assign"> <divide> <name target="pattern">pixelsize</name> <name target="font" >pixelsize</name> </divide> </edit> </match> <!-- For non-scalable bitmap fonts (ie. non-color), skip minor scaling if hinting is enabled. --> <match target="font"> <test name="outline" compare="eq"> <bool>false</bool> </test> <test name="scalable" compare="eq"> <bool>false</bool> </test> <test name="hinting" compare="eq"> <bool>true</bool> </test> <edit name="scalingnotneeded" mode="assign"> <and> <less> <name>pixelsizefixupfactor</name> <double>1.2</double> </less> <more> <name>pixelsizefixupfactor</name> <double>0.8</double> </more> </and> </edit> </match> <match target="font"> <test name="scalingnotneeded" compare="eq"> <bool>true</bool> </test> <edit name="pixelsizefixupfactor" mode="assign"> <double>1.0</double> </edit> </match> <!-- If we *are* going to scale, go ahead and do it. --> <match target="font"> <test name="outline" compare="eq"> <bool>false</bool> </test> <test name="pixelsizefixupfactor" compare="not_eq"> <double>1.0</double> </test> <edit name="matrix" mode="assign"> <times> <name>matrix</name> <matrix> <name>pixelsizefixupfactor</name> <double>0</double> <double>0</double> <name>pixelsizefixupfactor</name> </matrix> </times> </edit> <edit name="size" mode="assign"> <divide> <name>size</name> <name>pixelsizefixupfactor</name> </divide> </edit> </match> </fontconfig>
Save