Font rendering enhancement on the Welcome screen description
As was mentioned in this forum topic https://forum.manjaro.org/t/how-did-you-make-your-font-rendering-less-all-over-the-place/120231 and as shown in the OP picture
The font kind of breaks visually.
From a quick test done in Glade, i think the font should be set from Justification: Fill and Automatically wrap - Word :
To be set to Justification: Left and Automatically wrap - Character
The only thing that needs to be changed in the https://gitlab.manjaro.org/applications/manjaro-hello/-/blob/master/ui/manjaro-hello.glade file are the lines 70-71 to be changed from:
<property name="justify">fill</property>
<property name="wrap">True</property>
to be like this:
<property name="wrap">True</property>
<property name="wrap-mode">char</property>