OXIESEC PANEL
- Current Dir:
/
/
etc
/
fonts
/
conf.d
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/20/2025 09:37:16 PM
rwxr-xr-x
📄
10-hinting-slight.conf
696 bytes
06/05/2018 10:36:38 AM
rw-r--r--
📄
10-scale-bitmap-fonts.conf
2.18 KB
06/05/2018 10:36:38 AM
rw-r--r--
📄
20-unhint-small-dejavu-sans-mono.conf
866 bytes
05/17/2015 07:26:51 AM
rw-r--r--
📄
20-unhint-small-vera.conf
1.5 KB
06/05/2018 10:36:38 AM
rw-r--r--
📄
25-unhint-nonlatin.conf
3.41 KB
06/05/2018 10:36:38 AM
rw-r--r--
📄
30-metric-aliases.conf
12.96 KB
06/05/2018 10:36:38 AM
rw-r--r--
📄
40-nonlatin.conf
5.3 KB
06/05/2018 10:36:38 AM
rw-r--r--
📄
45-generic.conf
3.46 KB
06/05/2018 10:36:38 AM
rw-r--r--
📄
45-latin.conf
6.45 KB
06/05/2018 10:36:38 AM
rw-r--r--
📄
49-sansserif.conf
799 bytes
06/05/2018 10:36:38 AM
rw-r--r--
📄
50-user.conf
911 bytes
06/05/2018 10:36:38 AM
rw-r--r--
📄
51-local.conf
423 bytes
06/05/2018 10:36:38 AM
rw-r--r--
📄
57-dejavu-sans-mono.conf
1.47 KB
05/17/2015 07:26:51 AM
rw-r--r--
📄
59-liberation-mono.conf
482 bytes
01/08/2020 11:23:28 AM
rw-r--r--
📄
60-generic.conf
1.99 KB
06/05/2018 10:36:38 AM
rw-r--r--
📄
60-latin.conf
2.02 KB
06/05/2018 10:36:38 AM
rw-r--r--
📄
61-urw-bookman.conf
1021 bytes
09/22/2017 11:19:57 AM
rw-r--r--
📄
61-urw-c059.conf
1003 bytes
09/22/2017 11:19:57 AM
rw-r--r--
📄
61-urw-d050000l.conf
1022 bytes
09/22/2017 11:19:57 AM
rw-r--r--
📄
61-urw-fallback-backwards.conf
3.18 KB
10/14/2019 10:45:15 PM
rw-r--r--
📄
61-urw-gothic.conf
913 bytes
09/22/2017 11:19:57 AM
rw-r--r--
📄
61-urw-nimbus-mono-ps.conf
899 bytes
09/22/2017 11:19:57 AM
rw-r--r--
📄
61-urw-nimbus-roman.conf
877 bytes
09/22/2017 11:19:57 AM
rw-r--r--
📄
61-urw-nimbus-sans.conf
1.54 KB
10/14/2019 10:45:15 PM
rw-r--r--
📄
61-urw-p052.conf
975 bytes
09/22/2017 11:19:57 AM
rw-r--r--
📄
61-urw-standard-symbols-ps.conf
1.04 KB
09/22/2017 11:19:57 AM
rw-r--r--
📄
61-urw-z003.conf
865 bytes
09/22/2017 11:19:57 AM
rw-r--r--
📄
65-fonts-persian.conf
10.05 KB
06/05/2018 10:36:38 AM
rw-r--r--
📄
65-google-droid-sans.conf
7 KB
08/12/2018 11:21:02 AM
rw-r--r--
📄
65-nonlatin.conf
7.98 KB
10/09/2021 09:01:34 AM
rw-r--r--
📄
69-unifont.conf
847 bytes
06/05/2018 10:36:38 AM
rw-r--r--
📄
80-delicious.conf
597 bytes
06/05/2018 10:36:38 AM
rw-r--r--
📄
90-synthetic.conf
1.87 KB
07/19/2018 03:14:39 AM
rw-r--r--
📄
README
978 bytes
06/14/2018 12:01:16 PM
rw-r--r--
Editing: 20-unhint-small-vera.conf
Close
<?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <its:rules xmlns:its="http://www.w3.org/2005/11/its" version="1.0"> <its:translateRule translate="no" selector="/fontconfig/*[not(self::description)]"/> </its:rules> <description>Disable hinting for Bitstream Vera fonts when the size is less than 8ppem</description> <!-- The Bitstream Vera fonts have GASP entries suggesting that hinting be disabled below 8 ppem, but FreeType ignores those, preferring to use the data found in the instructed hints. The initial Vera release didn't include the right instructions in the 'prep' table. Fix this by disabling hinting manually at smaller sizes (< 8ppem) --> <match target="font"> <test name="family" compare="eq" ignore-blanks="true"> <string>Bitstream Vera Sans</string> </test> <test name="pixelsize" compare="less"> <double>7.5</double> </test> <edit name="hinting"> <bool>false</bool> </edit> </match> <match target="font"> <test name="family" compare="eq" ignore-blanks="true"> <string>Bitstream Vera Serif</string> </test> <test name="pixelsize" compare="less"> <double>7.5</double> </test> <edit name="hinting"> <bool>false</bool> </edit> </match> <match target="font"> <test name="family" compare="eq" ignore-blanks="true"> <string>Bitstream Vera Sans Mono</string> </test> <test name="pixelsize" compare="less"> <double>7.5</double> </test> <edit name="hinting"> <bool>false</bool> </edit> </match> </fontconfig>