Blame fonts.conf.in

Packit 352660
Packit 352660
Packit 352660
Packit 352660
<fontconfig>
Packit 352660
	<its:rules xmlns:its="http://www.w3.org/2005/11/its" version="1.0">
Packit 352660
		<its:translateRule translate="no" selector="/fontconfig/*[not(self::description)]"/>
Packit 352660
	</its:rules>
Packit 352660
Packit 352660
	<description>Default configuration file</description>
Packit 352660
Packit 352660
Packit 352660
	DO NOT EDIT THIS FILE.
Packit 352660
	IT WILL BE REPLACED WHEN FONTCONFIG IS UPDATED.
Packit 352660
	LOCAL CHANGES BELONG IN 'local.conf'.
Packit 352660
Packit 352660
	The intent of this standard configuration file is to be adequate for
Packit 352660
	most environments.  If you have a reasonably normal environment and
Packit 352660
	have found problems with this configuration, they are probably
Packit 352660
	things that others will also want fixed.  Please submit any
Packit 352660
	problems to the fontconfig bugzilla system located at fontconfig.org
Packit 352660
Packit 352660
	Note that the normal 'make install' procedure for fontconfig is to
Packit 352660
	replace any existing fonts.conf file with the new version.  Place
Packit 352660
	any local customizations in local.conf which this file references.
Packit 352660
Packit 352660
	Keith Packard
Packit 352660
-->
Packit 352660
Packit 352660
Packit 352660
Packit 352660
	<dir>@FC_DEFAULT_FONTS@</dir>
Packit 352660
	@FC_FONTPATH@
Packit 352660
	<dir prefix="xdg">fonts</dir>
Packit 352660
	
Packit 352660
	<dir>~/.fonts</dir>
Packit 352660
Packit 352660
Packit 352660
  Accept deprecated 'mono' alias, replacing it with 'monospace'
Packit 352660
-->
Packit 352660
	<match target="pattern">
Packit 352660
		<test qual="any" name="family">
Packit 352660
			<string>mono</string>
Packit 352660
		</test>
Packit 352660
		<edit name="family" mode="assign" binding="same">
Packit 352660
			<string>monospace</string>
Packit 352660
		</edit>
Packit 352660
	</match>
Packit 352660
Packit 352660
Packit 352660
  Accept alternate 'sans serif' spelling, replacing it with 'sans-serif'
Packit 352660
-->
Packit 352660
	<match target="pattern">
Packit 352660
		<test qual="any" name="family">
Packit 352660
			<string>sans serif</string>
Packit 352660
		</test>
Packit 352660
		<edit name="family" mode="assign" binding="same">
Packit 352660
			<string>sans-serif</string>
Packit 352660
		</edit>
Packit 352660
	</match>
Packit 352660
Packit 352660
Packit 352660
  Accept deprecated 'sans' alias, replacing it with 'sans-serif'
Packit 352660
-->
Packit 352660
	<match target="pattern">
Packit 352660
		<test qual="any" name="family">
Packit 352660
			<string>sans</string>
Packit 352660
		</test>
Packit 352660
		<edit name="family" mode="assign" binding="same">
Packit 352660
			<string>sans-serif</string>
Packit 352660
		</edit>
Packit 352660
	</match>
Packit 352660
Packit 352660
Packit 352660
  Load local system customization file
Packit 352660
-->
Packit 352660
	<include ignore_missing="yes">@CONFIGDIR@</include>
Packit 352660
Packit 352660
Packit 352660
Packit 352660
	<cachedir>@FC_CACHEDIR@</cachedir>
Packit 352660
	<cachedir prefix="xdg">fontconfig</cachedir>
Packit 352660
	
Packit 352660
	<cachedir>~/.fontconfig</cachedir>
Packit 352660
Packit 352660
	<config>
Packit 352660
Packit 352660
  Rescan configuration every 30 seconds when FcFontSetList is called
Packit 352660
 -->
Packit 352660
		<rescan>
Packit 352660
			<int>30</int>
Packit 352660
		</rescan>
Packit 352660
	</config>
Packit 352660
Packit 352660
</fontconfig>