I like the fonts that I used. The first thing I did - opacity your favorite fonts in NuTyX.
Their little - Roboto Condensed for DE MATE, Go monospace for ediror Pluma and font Console for Midnight Commander.
I am sharing my recipes with you. If I did wrong, write. I love to learn.
Pkgfile for Roboto:
# Description: Google Roboto condensed fonts.
# URL: https://fonts.google.com/specimen/Roboto+Condensed
# Packager: cdrw
# Depends on: xorg-server
CWD=`pwd`
name=roboto-fonts
version=2.136
release=1
source=(https://material-design.storage.googleapis.com/publish/material_v_9/0B0J8hsRkk91LRjU4U1NSeXdjd1U/RobotoTTF.zip)
echo 'fc-cache -v /usr/share/fonts/roboto-fonts
' > $name.post-install
build() {
cd $SRC
install -v -d -m755 $PKG/usr/share/fontconfig/conf.avail
install -v -d -m755 $PKG/etc/fonts/conf.d
install -d $PKG/usr/share/fonts/roboto-fonts/
install -m644 *.ttf $PKG/usr/share/fonts/roboto-fonts/
# install fontconfig files
echo '<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
<fontconfig>
<alias>
<family>sans-serif</family>
<prefer>
<family>Roboto Condensed</family>
</prefer>
</alias>
<alias>
<family>Roboto Condensed</family>
<default>
<family>sans-serif</family>
</default>
</alias>
<match target="scan">
test name="family">
<string>Roboto Condensed</string>
</test>
<edit name="width">
<const>condensed</const>
</edit>
</match>
</fontconfig>
' > $PKG/usr/share/fontconfig/conf.avail/64-roboto-condensed-fonts.conf
echo '<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
<fontconfig>
<alias>
<family>sans-serif</family>
<prefer>
<family>Roboto</family>
</prefer>
</alias>
<alias>
<family>Roboto</family>
<default>
<family>sans-serif</family>
</default>
</alias>
<match target="scan">
<test name="style">
<string>Thin</string>
</test>
<edit name="weight">
<const>thin</const>
</edit>
</match>
<match target="scan">
<test name="style">
<string>Thin Italic</string>
</test>
<edit name="weight">
const>thin</const>
</edit>
</match>
<match target="scan">
<test name="style">
<string>Black</string>
</test>
<edit name="weight">
<const>black</const>
</edit>
</match>
<match target="scan">
<test name="style">
<string>Black Italic</string>
</test>
<edit name="weight">
<const>black</const>
</edit>
</match>
</fontconfig>
' > $PKG/usr/share/fontconfig/conf.avail/64-roboto-fonts.conf
( cd $PKG/etc/fonts/conf.d ; ln -sf usr/share/fontconfig/conf.avail/64-roboto-condensed-fonts.conf . )
( cd $PKG/etc/fonts/conf.d ; ln -sf usr/share/fontconfig/conf.avail/64-roboto-fonts.conf . )
}