Skip to content

Latest commit

 

History

History
55 lines (43 loc) · 1.73 KB

File metadata and controls

55 lines (43 loc) · 1.73 KB
icon description
font-case
Issues related to fonts

Fonts

{% hint style="info" %} In attempt to minimize size & cater to all Locales/Fonts, .. aren't shipped with Fonts/Icons.

Instead, they use the fonts from the Host. {% endhint %}


{% code title="Installing Fonts on AlpineLinux" overflow="wrap" %}

!#Use doas/sudo wherever applicable
apk update --no-interactive
packages="fontconfig font-awesome font-inconsolata font-noto font-terminus font-unifont"
for pkg in $packages; do apk add "$pkg" --latest --upgrade --no-interactive ; done
fc-cache --force --verbose || sudo fc-cache --force --verbose
#Ideally logout/login again or Restart your system

{% endcode %}


{% code title="Installing Fonts on ArchLinux" overflow="wrap" %}

!#Use doas/sudo wherever applicable
pacman -y --sync --refresh --noconfirm
packages="fontconfig noto-fonts otf-font-awesome terminus-font ttf-dejavu ttf-inconsolata-nerd"
for pkg in $packages; do pacman -Sy "$pkg" --noconfirm ; done
fc-cache --force --verbose || sudo fc-cache --force --verbose
#Ideally logout/login again or Restart your system

{% endcode %}


{% code title="Installing Fonts on Debian" %}

!#Use doas/sudo wherever applicable
sudo apt update -y -qq && sudo apt install fontconfig fonts-noto -y
fc-cache --force --verbose || sudo fc-cache --force --verbose
#Ideally logout/login again or Restart your system

{% endcode %}