<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.manjaro.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Fontedit</id>
	<title>Manjaro - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.manjaro.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Fontedit"/>
	<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php/Special:Contributions/Fontedit"/>
	<updated>2026-04-08T06:47:44Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.36.1</generator>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Improve_Font_Rendering&amp;diff=29432</id>
		<title>Improve Font Rendering</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Improve_Font_Rendering&amp;diff=29432"/>
		<updated>2021-12-23T03:36:49Z</updated>

		<summary type="html">&lt;p&gt;Fontedit: Added option to enable infinality mode in freetype2 properties, removed autohint settings and system-ui font, cleaned up formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
==How to improve font rendering with your installed fonts==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
A little configuration maybe required to render the fonts in an optimal manner. Follow the steps illustrated below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
''1. Create the global fontconfig setting file /etc/fonts/local.conf''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
 {{UserCmd|command=sudo nano /etc/fonts/local.conf}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
Paste the following content in the file&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
 &amp;lt;!DOCTYPE fontconfig SYSTEM &amp;quot;fonts.dtd&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;fontconfig&amp;gt;&lt;br /&gt;
   &amp;lt;match target=&amp;quot;font&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;edit name=&amp;quot;antialias&amp;quot; mode=&amp;quot;assign&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;bool&amp;gt;true&amp;lt;/bool&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit name=&amp;quot;hinting&amp;quot; mode=&amp;quot;assign&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;bool&amp;gt;true&amp;lt;/bool&amp;gt;&lt;br /&gt;
     &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;rgba&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;const&amp;gt;rgb&amp;lt;/const&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;hintstyle&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;const&amp;gt;hintslight&amp;lt;/const&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;lcdfilter&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;const&amp;gt;lcddefault&amp;lt;/const&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
   &amp;lt;/match&amp;gt;&lt;br /&gt;
 &amp;lt;/fontconfig&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:7--&amp;gt;&lt;br /&gt;
After that save the file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:8--&amp;gt;&lt;br /&gt;
''2. Create backup of ~/.Xresources file:''&lt;br /&gt;
 {{UserCmd|command=cp ~/.Xresources ~/.Xresources.bak}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:9--&amp;gt;&lt;br /&gt;
If the .Xresources file has not been already created and you get the error&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:10--&amp;gt;&lt;br /&gt;
'''''&amp;quot;cp: cannot stat ‘~/.Xresources’: No such file or directory&amp;quot;''''', then skip to step No. 3.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:11--&amp;gt;&lt;br /&gt;
''3. Open/Create ~/.Xresources file in text editor:''&lt;br /&gt;
 {{UserCmd|command=nano ~/.Xresources}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:12--&amp;gt;&lt;br /&gt;
If the following is not already present, paste at the end of the file or edit existing values:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:13--&amp;gt;&lt;br /&gt;
 Xft.antialias: 1&lt;br /&gt;
 Xft.hinting: 1&lt;br /&gt;
 Xft.rgba: rgb&lt;br /&gt;
 Xft.hintstyle: hintslight&lt;br /&gt;
 Xft.lcdfilter: lcddefault&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:14--&amp;gt;&lt;br /&gt;
Save changes to the file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:15--&amp;gt;&lt;br /&gt;
''4. Run the following command in terminal:''&lt;br /&gt;
 {{UserCmd|command=xrdb -merge ~/.Xresources}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:16--&amp;gt;&lt;br /&gt;
''5. Make sure that ''Anti aliasing is '''On''', Hinting is set to '''Slight'''''  and RGBA (subpixel) order is set to '''rgb''' in System Settings (Appearance).''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:17--&amp;gt;&lt;br /&gt;
''6. Create symbolic links with some available presets from /usr/share/fontconfig/conf.avail/ to /etc/fonts/conf.d/''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:18--&amp;gt;&lt;br /&gt;
 {{UserCmd|command=sudo ln -s  /usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf /etc/fonts/conf.d/}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:19--&amp;gt;&lt;br /&gt;
 {{UserCmd|command=sudo ln -s  /usr/share/fontconfig/conf.avail/10-hinting-slight.conf /etc/fonts/conf.d/}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:20--&amp;gt;&lt;br /&gt;
 {{UserCmd|command=sudo ln -s  /usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf /etc/fonts/conf.d/}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:21--&amp;gt;&lt;br /&gt;
''7. Set preferred serif, sans-serif and monospace fonts (optional)''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:22--&amp;gt;&lt;br /&gt;
Create local fontconfig folder and setting file&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:23--&amp;gt;&lt;br /&gt;
 {{UserCmd|command=mkdir -p ~/.config/fontconfig/}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:24--&amp;gt;&lt;br /&gt;
 {{UserCmd|command=nano ~/.config/fontconfig/fonts.conf}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:25--&amp;gt;&lt;br /&gt;
Paste the following content in the file&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:26--&amp;gt;&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
 &amp;lt;!DOCTYPE fontconfig SYSTEM &amp;quot;fonts.dtd&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;fontconfig&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;serif&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Serif&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;sans-serif&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Sans&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;sans&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Sans&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;monospace&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Mono&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;mono&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Mono&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
 &amp;lt;/fontconfig&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:27--&amp;gt;&lt;br /&gt;
''8. Finally enable freetype2 infinality mode and reboot your computer.''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:28--&amp;gt;&lt;br /&gt;
add line to end of freetype2 config file and then rebuild fontconfig cache&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:29--&amp;gt;&lt;br /&gt;
 {{UserCmd| command=sudo nano /etc/profile.d/freetype2.sh}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:30--&amp;gt;&lt;br /&gt;
 {{UserCmd| command=export FREETYPE_PROPERTIES=&amp;quot;truetype:interpreter-version=38&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:31--&amp;gt;&lt;br /&gt;
 {{UserCmd|command=sudo fc-cache -fv}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:32--&amp;gt;&lt;br /&gt;
==See Also== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:33--&amp;gt;&lt;br /&gt;
[https://wiki.archlinux.org/index.php/Font_Configuration The Arch Wiki]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
[[Category:Contents Page{{#translation:}}]]&lt;/div&gt;</summary>
		<author><name>Fontedit</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Improve_Font_Rendering&amp;diff=29380</id>
		<title>Improve Font Rendering</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Improve_Font_Rendering&amp;diff=29380"/>
		<updated>2021-11-29T23:02:48Z</updated>

		<summary type="html">&lt;p&gt;Fontedit: Fixed minor spelling error  &amp;quot;Appearence&amp;quot; to &amp;quot;Appearance&amp;quot; in step 5&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
===How to improve font rendering with your installed fonts=== &amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
A little configuration maybe required to render the fonts in an optimal manner. Follow the steps illustrated below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
''1. Create the global fontconfig setting file /etc/fonts/local.conf''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
{{UserCmd|command=sudo nano /etc/fonts/local.conf}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
Paste the following content in the file&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
 &amp;lt;!DOCTYPE fontconfig SYSTEM &amp;quot;fonts.dtd&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;fontconfig&amp;gt;&lt;br /&gt;
   &amp;lt;match target=&amp;quot;font&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;edit name=&amp;quot;autohint&amp;quot; mode=&amp;quot;assign&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;bool&amp;gt;false&amp;lt;/bool&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit name=&amp;quot;hinting&amp;quot; mode=&amp;quot;assign&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;bool&amp;gt;true&amp;lt;/bool&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit name=&amp;quot;antialias&amp;quot; mode=&amp;quot;assign&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;bool&amp;gt;true&amp;lt;/bool&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;hintstyle&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;const&amp;gt;hintslight&amp;lt;/const&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;rgba&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;const&amp;gt;rgb&amp;lt;/const&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;lcdfilter&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;const&amp;gt;lcddefault&amp;lt;/const&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
   &amp;lt;/match&amp;gt;&lt;br /&gt;
 &amp;lt;/fontconfig&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:7--&amp;gt;&lt;br /&gt;
After that save the file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:8--&amp;gt;&lt;br /&gt;
''2. Create backup of ~/.Xresources file:''&lt;br /&gt;
 {{UserCmd|command=cp ~/.Xresources ~/.Xresources.bak}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:9--&amp;gt;&lt;br /&gt;
If the .Xresources file has not been already created and you get the error&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:10--&amp;gt;&lt;br /&gt;
'''''&amp;quot;cp: cannot stat ‘~/.Xresources’: No such file or directory&amp;quot;''''', then skip to step No. 3.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:11--&amp;gt;&lt;br /&gt;
''3. Open/Create ~/.Xresources file in text editor:''&lt;br /&gt;
 {{UserCmd|command=nano ~/.Xresources}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:12--&amp;gt;&lt;br /&gt;
If the following is not already present, paste at the end of the file or edit existing values:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;!--T:13--&amp;gt;&lt;br /&gt;
Xft.antialias: 1&lt;br /&gt;
 Xft.hinting: 1&lt;br /&gt;
 Xft.autohint: 0&lt;br /&gt;
 Xft.rgba: rgb&lt;br /&gt;
 Xft.hintstyle: hintslight&lt;br /&gt;
 Xft.lcdfilter: lcddefault&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:14--&amp;gt;&lt;br /&gt;
Save changes to the file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:15--&amp;gt;&lt;br /&gt;
''4. Run the following command in terminal:''&lt;br /&gt;
 {{UserCmd|command=xrdb -merge ~/.Xresources}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:16--&amp;gt;&lt;br /&gt;
''5. Make sure that ''Anti aliasing is '''On''', Hinting is set to '''Slight'''''  and RGBA (subpixel) order is set to '''rgb''' in System Settings (Appearance).''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:17--&amp;gt;&lt;br /&gt;
''6. Create symbolic links with some available presets from /usr/share/fontconfig/conf.avail/ to /etc/fonts/conf.d/''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;!--T:18--&amp;gt;&lt;br /&gt;
{{UserCmd|command=sudo ln -s  /usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf /etc/fonts/conf.d/}}&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;!--T:19--&amp;gt;&lt;br /&gt;
{{UserCmd|command=sudo ln -s  /usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf /etc/fonts/conf.d/}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:20--&amp;gt;&lt;br /&gt;
''7. Set preferred serif, sans-serif and monospace fonts (optional)''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:21--&amp;gt;&lt;br /&gt;
Create local fontconfig folder and setting file&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;!--T:22--&amp;gt;&lt;br /&gt;
{{UserCmd|command=mkdir -p ~/.config/fontconfig/}}&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;!--T:23--&amp;gt;&lt;br /&gt;
{{UserCmd|command=nano ~/.config/fontconfig/fonts.conf}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:24--&amp;gt;&lt;br /&gt;
Paste the following content in the file&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;!--T:25--&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
 &amp;lt;!DOCTYPE fontconfig SYSTEM &amp;quot;fonts.dtd&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;fontconfig&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;serif&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Serif&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;sans-serif&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Sans&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;sans&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Sans&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;monospace&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Mono&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;mono&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Mono&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;system-ui&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Sans&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
 &amp;lt;/fontconfig&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:26--&amp;gt;&lt;br /&gt;
''8. Finally rebuild fontconfig cache and reboot your computer to apply the settings.''&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;!--T:27--&amp;gt;&lt;br /&gt;
{{UserCmd|command=sudo fc-cache -fv}}&lt;br /&gt;
&lt;br /&gt;
=See Also= &amp;lt;!--T:28--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:29--&amp;gt;&lt;br /&gt;
[https://wiki.archlinux.org/index.php/Font_Configuration The Arch Wiki]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
[[Category:Contents Page{{#translation:}}]]&lt;/div&gt;</summary>
		<author><name>Fontedit</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=VirtualBox&amp;diff=22722</id>
		<title>VirtualBox</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=VirtualBox&amp;diff=22722"/>
		<updated>2021-05-12T13:20:48Z</updated>

		<summary type="html">&lt;p&gt;Fontedit: Added creation of media folder, permission setting to ensure shared folders are visible in file manager and edited command to add user to vboxsf group&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
==Overview==&lt;br /&gt;
[[file:vbox.png|left]]&lt;br /&gt;
Developed by Sun Microsystems, now Oracle Corporation, '''[https://www.virtualbox.org/ VirtualBox]''' is a popular application that allows for other operating systems (known as ''Guests'') to be installed and run within an existing operating system (known as the ''Host''). This is undertaken through the process of ''virtualisation'', whereby virtual versions of your computer (also referred to as ''virtual machines'' or ''VMs'') are created within and draw resources directly from the host system. As such, how fast or powerful a virtual machine may be will depend entirely on the resources available - and allocated - for it to use. The benefits of virtualisation include:&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot; /&amp;gt;&lt;br /&gt;
* The fast and easy installation of other operating systems without affecting your existing system (e.g. no need for dual booting and/or preparation in the form of hard disk partitioning or re-sizing)&lt;br /&gt;
* Completely safe learning and experimentation with operating systems, as nothing that occurs within a Guest will affect the Host (e.g. the Host operating system can also be installed as a Guest in a virtual machine as a risk-free means of trying out new things), and&lt;br /&gt;
* An almost unlimited capacity to install as many additional operating systems as desired...provided space is available on your hard drive to store them!&lt;br /&gt;
&lt;br /&gt;
==Installing Virtualbox on Manjaro==&lt;br /&gt;
===Enabling Virtualisation===&lt;br /&gt;
Before installing VirtualBox, it is important to first ensure that '''virtualization''' has been enabled in your BIOS.  The exact instructions for doing this vary based on your hardware.  Please review the manual provided by your computer or motherboard manufacturer for specific instructions.&lt;br /&gt;
&lt;br /&gt;
===Install VirtualBox===&lt;br /&gt;
To install VirtualBox, you need to install the packages {{ic|virtualbox}} and {{ic|linux*-virtualbox-host-modules}}.  The latter must match the version of the kernel you are running. To list what kernels is installed use mhwd (example)&lt;br /&gt;
 $ mhwd-kernel -li&lt;br /&gt;
 Currently running: 5.4.0-1-MANJARO (linux54)&lt;br /&gt;
 The following kernels are installed in your system:&lt;br /&gt;
    * linux54&lt;br /&gt;
&lt;br /&gt;
To install VirtualBox and the kernel modules for your installed kernel enter the following command in the terminal:&lt;br /&gt;
 $ sudo pacman -Syu virtualbox linux54-virtualbox-host-modules&lt;br /&gt;
&lt;br /&gt;
Once the installation has completed, it will then be necessary to add the ''VirtualBox Module'' to your kernel. '''The easy way is to simply reboot your system'''. Otherwise, to start using VirtualBox immediately, enter the following command:&lt;br /&gt;
 $ sudo vboxreload&lt;br /&gt;
&lt;br /&gt;
===Install the Extension Pack(Optional)===&lt;br /&gt;
The extension pack is a proprietary set of extensions providing extra functionality to VirtualBox like USB2 and USB3 passthrough. You only need this if you are going to use the functionality provided and it is '''not required''' for VirtualBox to function.&lt;br /&gt;
* Oracle Cloud Infrastructure integration&lt;br /&gt;
* USB 2.0 and USB 3.0 Host Controller&lt;br /&gt;
* Host Webcam&lt;br /&gt;
* VirtualBox RDP&lt;br /&gt;
* PXE ROM&lt;br /&gt;
* Disk Encryption&lt;br /&gt;
* NVMe&lt;br /&gt;
&lt;br /&gt;
{{Important|As noted by VirtualBox - it is important you are using the extension pack matching your installed version of VirtualBox.&amp;lt;br/&amp;gt;&lt;br /&gt;
'''Please install the same version extension pack as your installed version of VirtualBox.''' – [https://www.virtualbox.org/wiki/Downloads VirtualBox Download page]}}&lt;br /&gt;
Check your VirtualBox version (example)&lt;br /&gt;
 $ vboxmanage --version&lt;br /&gt;
 6.1.14r140239&lt;br /&gt;
&lt;br /&gt;
====Install extensionpack using AUR====&lt;br /&gt;
Locate the correct AUR PKGBUILD using pamac (or the AUR helper of choice) - example is using '''pamac'''&lt;br /&gt;
{{Important|AUR PKGBUILDs labelled manjaro is '''not''' maintained by Manjaro!}}&lt;br /&gt;
 $ pamac search virtualbox-ext-oracle&lt;br /&gt;
 virtualbox-ext-oracle-manjaro         6.1.12-2         AUR &lt;br /&gt;
     Oracle VM VirtualBox Extension&lt;br /&gt;
     Pack&lt;br /&gt;
 virtualbox-ext-oracle-beta            6.1.0_RC1-1      AUR &lt;br /&gt;
     Oracle VM VirtualBox Extension&lt;br /&gt;
     Pack (Beta)&lt;br /&gt;
 virtualbox-ext-oracle-5-test-build    5.2.35_135314-1  AUR &lt;br /&gt;
     Oracle VM VirtualBox Extension&lt;br /&gt;
     Pack Test Build 5.2.35_135314&lt;br /&gt;
 virtualbox-ext-oracle-5.0             5.0.40-1         AUR &lt;br /&gt;
     Oracle VM VirtualBox Extension&lt;br /&gt;
     Pack&lt;br /&gt;
 virtualbox-ext-oracle-5               5.2.x-1          AUR &lt;br /&gt;
     Oracle VM VirtualBox Extension&lt;br /&gt;
     Pack 5.2.x (stable)&lt;br /&gt;
 virtualbox-ext-oracle                 6.1.14-1         AUR &lt;br /&gt;
     Oracle VM VirtualBox Extension&lt;br /&gt;
     Pack&lt;br /&gt;
&lt;br /&gt;
When you have found the match you can install using the helper - example is using pamac&lt;br /&gt;
 $ pamac build virtualbox-ext-&amp;lt;your-decision&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Get extensionpack from VirtualBox====&lt;br /&gt;
Same rule apply - match your VirtualBox version - usually the latest version applies.&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
[https://www.virtualbox.org/wiki/Downloads  Downloads – Oracle VM VirtualBox]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
If the latest version do not match yours - you can find earlier versions using this page&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
[https://www.virtualbox.org/wiki/Download_Old_Builds Download Old Builds - Oracle VM Virtualbox]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
The extension '''.vbox-extpack''' is a registered mime extension so just open the file and VirtualBox will install the extension pack. Provide your password when asked.&lt;br /&gt;
&lt;br /&gt;
==Configuring the host==&lt;br /&gt;
=== Adding Your Account to the '''vboxusers''' User Group ===&lt;br /&gt;
The final step is to now add your personal user account to the {{ic|vboxusers}} group. This is necessary in order to fully access the features provided by VirtualBox. The '''$USER''' variable translates to the currently logged in user and you must logout or restart for the change to take effect.&lt;br /&gt;
 $ sudo gpasswd -a $USER vboxusers&lt;br /&gt;
&lt;br /&gt;
==Manjaro VBox guest==&lt;br /&gt;
For those intending to use Manjaro under VirtualBox, you can install Manjaro as usual. Please observe below point of setting the correct display type. &lt;br /&gt;
&lt;br /&gt;
===Selecting a Display Controller===&lt;br /&gt;
Before installation of Manjaro ensure the correct display settings for VM. The Manjaro recommendation - to ensure the best experience - is contradicting the recommendations from VirtualBox developers. To have the VM screensize adapting to the window size - you need enable VBoxSVGA but doing so you cannot enable 3D. To use 3D you need to use VMSVGA which will force you to set the VM screen size inside the VM. If you use the VMSVGA adapter - mhwd will keep telling you to switch - you can do it but you will not be able to utilize 3D graphics.&lt;br /&gt;
&lt;br /&gt;
===Troubleshooting guest===&lt;br /&gt;
If you deem it necessary to ensure the packages are installed please follow this recipe&lt;br /&gt;
 $ mhwd-kernel -li                                                           &lt;br /&gt;
 Currently running: 5.4.0-1-MANJARO (linux54)&lt;br /&gt;
 The following kernels are installed in your system:&lt;br /&gt;
    * linux54&lt;br /&gt;
 $ sudo pacman -Syu virtualbox-guest-utils linux54-virtualbox-guest-modules&lt;br /&gt;
&lt;br /&gt;
===Guest Configuration===&lt;br /&gt;
You will need to load the modules if you don't want to reboot:&lt;br /&gt;
 $ sudo modprobe vboxguest vboxvideo vboxsf&lt;br /&gt;
&lt;br /&gt;
The guest utils than need to be started and enabled:&lt;br /&gt;
 $ sudo systemctl enable --now vboxservice.service&lt;br /&gt;
&lt;br /&gt;
Add you VM user to the vboxsf group (this requires you to logout to apply the new group)&lt;br /&gt;
 $ sudo usermod -aG vboxsf ${USER}&lt;br /&gt;
&lt;br /&gt;
Create media folder in root directory if it does not already exist&lt;br /&gt;
 $ sudo mkdir /media&lt;br /&gt;
&lt;br /&gt;
Assign the correct permissions to the media folder to be able to access shared folders&lt;br /&gt;
 $ sudo chmod 755 /media&lt;br /&gt;
&lt;br /&gt;
==Advise, Tips, and Tricks==&lt;br /&gt;
&lt;br /&gt;
Advice on using Virtualbox effectively, as well as some tips and tricks learned along the way, have been provided for the benefit of new users.&lt;br /&gt;
&lt;br /&gt;
===Guest Installation===&lt;br /&gt;
* Virtualbox can run installation files (ISOs) directly as virtual discs, so there is no need to burn them to an installation medium such as a disc or USB data stick.&lt;br /&gt;
* The process to install any Guest operating system, [[Installation_Guides|including Manjaro]], is exactly the same as if actually installing for real on your computer.&lt;br /&gt;
&lt;br /&gt;
===Guest Additions===&lt;br /&gt;
Guest Additions are special software packages designed to improve the performance and usability of guest operating systems. &lt;br /&gt;
&lt;br /&gt;
They are installed within the Guest operating system itself, and most notably result in enhancing the display resolution, as well as enabling much better control over the mouse. As such, two tell-tale signs that Guest Additions have not been installed in a Guest are that the display will not scale to the size of the display window (i.e. it will be necessary to scroll around to see the whole screen), and the mouse may be quite hard to control.&lt;br /&gt;
&lt;br /&gt;
Instructions for installing the guest additions in Manjaro are provided above.  For other operating systems please review the VirtualBox instructions [[#See Also|linked below]]&lt;br /&gt;
&lt;br /&gt;
===Guest Display===&lt;br /&gt;
If you are using other guests e.g. Ubuntu, Linux Mint and others be sure to use the default VMSVGA display driver.&lt;br /&gt;
&lt;br /&gt;
It will be necessary to activate the '''Enable 3D acceleration''' box in order to allow for some desktop effects (such as transparency) to be shown. This can be undertaken by going into the settings menu, and then selecting the '''Display''' section.&lt;br /&gt;
&lt;br /&gt;
If you are getting screen distortion or transparent dialogs using Windows guest - shutdown the VM and change the graphics settings of the VM. Remove the checkbox for '''Enable 3D acceleration'''.&lt;br /&gt;
&lt;br /&gt;
===Guest Internet Connection===&lt;br /&gt;
Some users have encountered problems when attempting to connect their virtual machine to the internet using the default VirtualBox settings. Where this is the case, try the following solution &lt;br /&gt;
&lt;br /&gt;
* Click the '''Settings Button''' and then select the '''Network''' tab&lt;br /&gt;
* Next to the '''Attached to''' heading is a button that states '''NAT'''. Click it to reveal a drop down menu and select '''Bridged Adapter''' instead.&lt;br /&gt;
* Next to the '''Name''' heading is a button whereby you may select how you are currently connected to the internet (e.g. ''Wlan'' means Wireless, and ''Eth0'' means Ethernet). Select the appropriate connection type you are currently using.&lt;br /&gt;
* Click the '''OK''' button to confirm.&lt;br /&gt;
&lt;br /&gt;
==General Troubleshooting==&lt;br /&gt;
* A VirtualBox installation will not automatically detect when USB device has been connected. As such, it is therefore necessary to click the USB icon located at the bottom of the VirtualBox window in order to select and activate it.&lt;br /&gt;
* It is possible to enable the (very useful) ability to copy and paste text between the Guest and Host systems. This is undertaken by clicking '''Settings''' button and then going to the '''General''' Section.&lt;br /&gt;
* Don't be afraid to take risks, to experiment, and to have fun with Guest operating systems. The worst that can happen is that they will have to be re-installed!&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [https://archived.forum.manjaro.org/t/how-to-install-virtualbox/22183 How to install VirtualBox Forum Topic]&lt;br /&gt;
* [https://https://forum.manjaro.org/t/howto-virtualbox-installation-usb-shared-folder/1178 VirtualBox Installation, USB and Shared Folders Forum Wiki HowTo]&lt;br /&gt;
* The official [http://www.virtualbox.org/manual/ VirtualBox Manual]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Virtualisation]]&lt;/div&gt;</summary>
		<author><name>Fontedit</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Improve_Font_Rendering&amp;diff=22569</id>
		<title>Improve Font Rendering</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Improve_Font_Rendering&amp;diff=22569"/>
		<updated>2021-04-30T14:20:17Z</updated>

		<summary type="html">&lt;p&gt;Fontedit: Changed autohint to false and added system-ui preferred font for better results&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
===How to improve font rendering with your installed fonts===&lt;br /&gt;
&lt;br /&gt;
A little configuration maybe required to render the fonts in an optimal manner. Follow the steps illustrated below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''1. Create the global fontconfig setting file /etc/fonts/local.conf''&lt;br /&gt;
&lt;br /&gt;
 sudo nano /etc/fonts/local.conf&lt;br /&gt;
&lt;br /&gt;
Paste the following content in the file&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
 &amp;lt;!DOCTYPE fontconfig SYSTEM &amp;quot;fonts.dtd&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;fontconfig&amp;gt;&lt;br /&gt;
   &amp;lt;match target=&amp;quot;font&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;edit name=&amp;quot;autohint&amp;quot; mode=&amp;quot;assign&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;bool&amp;gt;false&amp;lt;/bool&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit name=&amp;quot;hinting&amp;quot; mode=&amp;quot;assign&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;bool&amp;gt;true&amp;lt;/bool&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit name=&amp;quot;antialias&amp;quot; mode=&amp;quot;assign&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;bool&amp;gt;true&amp;lt;/bool&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;hintstyle&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;const&amp;gt;hintslight&amp;lt;/const&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;rgba&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;const&amp;gt;rgb&amp;lt;/const&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;lcdfilter&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;const&amp;gt;lcddefault&amp;lt;/const&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
   &amp;lt;/match&amp;gt;&lt;br /&gt;
 &amp;lt;/fontconfig&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After that save the file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''2. Create backup of ~/.Xresources file:''&lt;br /&gt;
 cp ~/.Xresources ~/.Xresources.bak&lt;br /&gt;
&lt;br /&gt;
If the .Xresources file has not been already created and you get the error&lt;br /&gt;
&lt;br /&gt;
'''''&amp;quot;cp: cannot stat ‘~/.Xresources’: No such file or directory&amp;quot;''''', then skip to step No. 3.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''3. Open/Create ~/.Xresources file in text editor:''&lt;br /&gt;
 nano ~/.Xresources&lt;br /&gt;
&lt;br /&gt;
If the following is not already present, paste at the end of the file or edit existing values:&lt;br /&gt;
&lt;br /&gt;
 Xft.antialias: 1&lt;br /&gt;
 Xft.hinting: 1&lt;br /&gt;
 Xft.autohint: 0&lt;br /&gt;
 Xft.rgba: rgb&lt;br /&gt;
 Xft.hintstyle: hintslight&lt;br /&gt;
 Xft.lcdfilter: lcddefault&lt;br /&gt;
&lt;br /&gt;
Save changes to the file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''4. Run the following command in terminal:''&lt;br /&gt;
 xrdb -merge ~/.Xresources&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''5. Make sure that ''Anti aliasing is '''On''', Hinting is set to '''Slight'''''  and RGBA (subpixel) order is set to '''rgb''' in System Settings (Appearence).''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''6. Create symbolic links with some available presets from /usr/share/fontconfig/conf.avail/ to /etc/fonts/conf.d/''&lt;br /&gt;
&lt;br /&gt;
 sudo ln -s  /usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf /etc/fonts/conf.d/&lt;br /&gt;
&lt;br /&gt;
 sudo ln -s  /usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf /etc/fonts/conf.d/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''7. Set preferred serif, sans-serif and monospace fonts (optional)''&lt;br /&gt;
&lt;br /&gt;
Create local fontconfig folder and setting file&lt;br /&gt;
&lt;br /&gt;
 mkdir -p ~/.config/fontconfig/&lt;br /&gt;
&lt;br /&gt;
 nano ~/.config/fontconfig/fonts.conf&lt;br /&gt;
&lt;br /&gt;
Paste the following content in the file&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
 &amp;lt;!DOCTYPE fontconfig SYSTEM &amp;quot;fonts.dtd&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;fontconfig&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;serif&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Serif&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;sans-serif&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Sans&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;sans&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Sans&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;monospace&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Mono&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;mono&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Mono&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;system-ui&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Sans&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
 &amp;lt;/fontconfig&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''8. Finally rebuild fontconfig cache and reboot your computer to apply the settings.''&lt;br /&gt;
&lt;br /&gt;
 sudo fc-cache -fv&lt;br /&gt;
&lt;br /&gt;
=See Also=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://wiki.archlinux.org/index.php/Font_Configuration The Arch Wiki]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Contents Page]]&lt;/div&gt;</summary>
		<author><name>Fontedit</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Improve_Font_Rendering&amp;diff=22355</id>
		<title>Improve Font Rendering</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Improve_Font_Rendering&amp;diff=22355"/>
		<updated>2021-04-26T04:50:54Z</updated>

		<summary type="html">&lt;p&gt;Fontedit: Removed BCI settings, properly formatted font setting xml file, updated location of presets and added option to set preferred fonts&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
===How to improve font rendering with your installed fonts===&lt;br /&gt;
&lt;br /&gt;
A little configuration maybe required to render the fonts in an optimal manner. Follow the steps illustrated below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''1. Create the global fontconfig setting file /etc/fonts/local.conf''&lt;br /&gt;
&lt;br /&gt;
 sudo nano /etc/fonts/local.conf&lt;br /&gt;
&lt;br /&gt;
Paste the following content in the file&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
 &amp;lt;!DOCTYPE fontconfig SYSTEM &amp;quot;fonts.dtd&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;fontconfig&amp;gt;&lt;br /&gt;
   &amp;lt;match target=&amp;quot;font&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;edit name=&amp;quot;autohint&amp;quot; mode=&amp;quot;assign&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;bool&amp;gt;true&amp;lt;/bool&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit name=&amp;quot;hinting&amp;quot; mode=&amp;quot;assign&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;bool&amp;gt;true&amp;lt;/bool&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit name=&amp;quot;antialias&amp;quot; mode=&amp;quot;assign&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;bool&amp;gt;true&amp;lt;/bool&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;hintstyle&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;const&amp;gt;hintslight&amp;lt;/const&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;rgba&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;const&amp;gt;rgb&amp;lt;/const&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
     &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;lcdfilter&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;const&amp;gt;lcddefault&amp;lt;/const&amp;gt;&lt;br /&gt;
     &amp;lt;/edit&amp;gt;&lt;br /&gt;
   &amp;lt;/match&amp;gt;&lt;br /&gt;
 &amp;lt;/fontconfig&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After that save the file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''2. Create backup of ~/.Xresources file:''&lt;br /&gt;
 cp ~/.Xresources ~/.Xresources.bak&lt;br /&gt;
&lt;br /&gt;
If the .Xresources file has not been already created and you get the error&lt;br /&gt;
&lt;br /&gt;
'''''&amp;quot;cp: cannot stat ‘~/.Xresources’: No such file or directory&amp;quot;''''', then skip to step No. 3.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''3. Open/Create ~/.Xresources file in text editor:''&lt;br /&gt;
 nano ~/.Xresources&lt;br /&gt;
&lt;br /&gt;
If the following is not already present, paste at the end of the file or edit existing values:&lt;br /&gt;
&lt;br /&gt;
 Xft.antialias: 1&lt;br /&gt;
 Xft.hinting: 1&lt;br /&gt;
 Xft.autohint: 1&lt;br /&gt;
 Xft.rgba: rgb&lt;br /&gt;
 Xft.hintstyle: hintslight&lt;br /&gt;
 Xft.lcdfilter: lcddefault&lt;br /&gt;
&lt;br /&gt;
Save changes to the file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''4. Run the following command in terminal:''&lt;br /&gt;
 xrdb -merge ~/.Xresources&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''5. Make sure that ''Anti aliasing is '''On''', Hinting is set to '''Slight'''''  and RGBA (subpixel) order is set to '''rgb''' in System Settings (Appearence).''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''6. Create symbolic links with some available presets from /usr/share/fontconfig/conf.avail/ to /etc/fonts/conf.d/''&lt;br /&gt;
&lt;br /&gt;
 sudo ln -s  /usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf /etc/fonts/conf.d/&lt;br /&gt;
&lt;br /&gt;
 sudo ln -s  /usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf /etc/fonts/conf.d/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''7. Set preferred serif, sans-serif and monospace fonts (optional)''&lt;br /&gt;
&lt;br /&gt;
Create local fontconfig folder and setting file&lt;br /&gt;
&lt;br /&gt;
 mkdir -p ~/.config/fontconfig/&lt;br /&gt;
&lt;br /&gt;
 nano ~/.config/fontconfig/fonts.conf&lt;br /&gt;
&lt;br /&gt;
Paste the following content in the file&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
 &amp;lt;!DOCTYPE fontconfig SYSTEM &amp;quot;fonts.dtd&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;fontconfig&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;serif&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Serif&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;sans-serif&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Sans&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;sans&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Sans&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;monospace&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Mono&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
   &amp;lt;alias&amp;gt;&lt;br /&gt;
     &amp;lt;family&amp;gt;mono&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;prefer&amp;gt;&lt;br /&gt;
       &amp;lt;family&amp;gt;Liberation Mono&amp;lt;/family&amp;gt;&lt;br /&gt;
     &amp;lt;/prefer&amp;gt;&lt;br /&gt;
   &amp;lt;/alias&amp;gt;&lt;br /&gt;
 &amp;lt;/fontconfig&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''8. Finally rebuild fontconfig cache and reboot your computer to apply the settings.''&lt;br /&gt;
&lt;br /&gt;
 sudo fc-cache -fv&lt;br /&gt;
&lt;br /&gt;
=See Also=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://wiki.archlinux.org/index.php/Font_Configuration The Arch Wiki]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Contents Page]]&lt;/div&gt;</summary>
		<author><name>Fontedit</name></author>
	</entry>
	<entry>
		<id>https://wiki.manjaro.org/index.php?title=Improve_Font_Rendering&amp;diff=22352</id>
		<title>Improve Font Rendering</title>
		<link rel="alternate" type="text/html" href="https://wiki.manjaro.org/index.php?title=Improve_Font_Rendering&amp;diff=22352"/>
		<updated>2021-04-09T05:16:56Z</updated>

		<summary type="html">&lt;p&gt;Fontedit: Added more context to true type interpreter setting and properly formatted content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
===How to improve font rendering with your installed fonts===&lt;br /&gt;
&lt;br /&gt;
A little configuration maybe required to render the fonts in an optimal manner. Follow the steps illustrated below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''1. Create the file /etc/fonts/local.conf''&lt;br /&gt;
&lt;br /&gt;
 sudo nano /etc/fonts/local.conf&lt;br /&gt;
&lt;br /&gt;
Paste the following content in the file&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;match target=&amp;quot;font&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;edit name=&amp;quot;autohint&amp;quot; mode=&amp;quot;assign&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;bool&amp;gt;false&amp;lt;/bool&amp;gt;&lt;br /&gt;
   &amp;lt;/edit&amp;gt;&lt;br /&gt;
   &amp;lt;edit name=&amp;quot;hinting&amp;quot; mode=&amp;quot;assign&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;bool&amp;gt;true&amp;lt;/bool&amp;gt;&lt;br /&gt;
   &amp;lt;/edit&amp;gt;&lt;br /&gt;
   &amp;lt;edit name=&amp;quot;antialias&amp;quot; mode=&amp;quot;assign&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;bool&amp;gt;true&amp;lt;/bool&amp;gt;&lt;br /&gt;
   &amp;lt;/edit&amp;gt;&lt;br /&gt;
   &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;hintstyle&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;const&amp;gt;hintslight&amp;lt;/const&amp;gt;&lt;br /&gt;
   &amp;lt;/edit&amp;gt;&lt;br /&gt;
   &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;rgba&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;const&amp;gt;rgb&amp;lt;/const&amp;gt;&lt;br /&gt;
   &amp;lt;/edit&amp;gt;&lt;br /&gt;
   &amp;lt;edit mode=&amp;quot;assign&amp;quot; name=&amp;quot;lcdfilter&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;const&amp;gt;lcddefault&amp;lt;/const&amp;gt;&lt;br /&gt;
   &amp;lt;/edit&amp;gt;&lt;br /&gt;
 &amp;lt;/match&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After that save the file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''2. Create backup of ~/.Xresources file:''&lt;br /&gt;
 cp ~/.Xresources ~/.Xresources.bak&lt;br /&gt;
&lt;br /&gt;
If the .Xresources file has not been already created and you get the error&lt;br /&gt;
&lt;br /&gt;
'''''&amp;quot;cp: cannot stat ‘~/.Xresources’: No such file or directory&amp;quot;''''', then skip to step No. 3.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''3. Open/Create ~/.Xresources file in text editor:''&lt;br /&gt;
 nano ~/.Xresources&lt;br /&gt;
&lt;br /&gt;
If the following is not already present, paste at the end of the file or edit existing values:&lt;br /&gt;
&lt;br /&gt;
 Xft.dpi: 96&lt;br /&gt;
 Xft.antialias: true&lt;br /&gt;
 Xft.hinting: true&lt;br /&gt;
 Xft.rgba: rgb&lt;br /&gt;
 Xft.autohint: false&lt;br /&gt;
 Xft.hintstyle: hintslight&lt;br /&gt;
 Xft.lcdfilter: lcddefault&lt;br /&gt;
&lt;br /&gt;
Save changes to the file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''4. Run the following command in terminal:''&lt;br /&gt;
 xrdb -merge ~/.Xresources&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''5. Make sure that ''Anti aliasing is '''On''', Hinting is set to '''Slight'''''  and RGBA (subpixel) order is set to '''rgb''' in System Settings (Appearence).''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''6. Create symbolic links with some available presets from /etc/fonts/conf.avail/ to /etc/fonts/conf.d/''&lt;br /&gt;
&lt;br /&gt;
 sudo ln -s  /etc/fonts/conf.avail/10-sub-pixel-rgb.conf /etc/fonts/conf.d/&lt;br /&gt;
&lt;br /&gt;
 sudo ln -s  /etc/fonts/conf.avail/11-lcdfilter-default.conf /etc/fonts/conf.d/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''7. Set truetype interpreter version to infinality mode (optional)''&lt;br /&gt;
&lt;br /&gt;
 sudo nano /etc/profile.d/freetype2.sh&lt;br /&gt;
&lt;br /&gt;
Edit content of the file to reflect setting below&lt;br /&gt;
&lt;br /&gt;
 # Subpixel hinting mode can be chosen by setting the right TrueType interpreter&lt;br /&gt;
 # version. The available settings are:&lt;br /&gt;
 #&lt;br /&gt;
 # truetype:interpreter-version=35 # Classic mode (default in 2.6)&lt;br /&gt;
 # truetype:interpreter-version=38 # Infinality mode&lt;br /&gt;
 # truetype:interpreter-version=40 # Minimal mode (default in 2.7)&lt;br /&gt;
 #&lt;br /&gt;
 # There are more properties that can be set, separated by whitespace. Please&lt;br /&gt;
 # refer to the FreeType documentation for details.&lt;br /&gt;
 &lt;br /&gt;
 # Uncomment and configure below&lt;br /&gt;
 &lt;br /&gt;
 export FREETYPE_PROPERTIES=&amp;quot;truetype:interpreter-version=38&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''8. Finally reboot your computer to apply the settings.''&lt;br /&gt;
&lt;br /&gt;
=See Also=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://wiki.archlinux.org/index.php/Font_Configuration The Arch Wiki]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Contents Page]]&lt;/div&gt;</summary>
		<author><name>Fontedit</name></author>
	</entry>
</feed>