2025-06-02 10:29:11 +02:00
|
|
|
yay -Sy --noconfirm --needed ttf-font-awesome
|
2025-06-02 09:34:49 +02:00
|
|
|
|
2025-06-02 09:32:43 +02:00
|
|
|
mkdir -p ~/.local/share/fonts
|
|
|
|
|
2025-06-02 10:42:24 +02:00
|
|
|
if ! fc-list | grep -qi "CaskaydiaMono Nerd Font"; then
|
|
|
|
cd /tmp
|
|
|
|
wget https://github.com/ryanoasis/nerd-fonts/releases/latest/download/CascadiaMono.zip
|
|
|
|
unzip CascadiaMono.zip -d CascadiaFont
|
|
|
|
cp CascadiaFont/*.ttf ~/.local/share/fonts
|
|
|
|
rm -rf CascadiaMono.zip CascadiaFont
|
2025-06-09 10:09:12 +02:00
|
|
|
fc-cache
|
|
|
|
cd -
|
|
|
|
fi
|
2025-06-02 09:32:43 +02:00
|
|
|
|
2025-06-09 10:09:12 +02:00
|
|
|
if ! fc-list | grep -qi "iA Writer Mono S"; then
|
|
|
|
cd /tmp
|
2025-06-02 10:42:24 +02:00
|
|
|
wget -O iafonts.zip https://github.com/iaolo/iA-Fonts/archive/refs/heads/master.zip
|
|
|
|
unzip iafonts.zip -d iaFonts
|
|
|
|
cp iaFonts/iA-Fonts-master/iA\ Writer\ Mono/Static/iAWriterMonoS-*.ttf ~/.local/share/fonts
|
|
|
|
rm -rf iafonts.zip iaFonts
|
|
|
|
fc-cache
|
|
|
|
cd -
|
|
|
|
fi
|