Files
omarchy/install/fonts.sh

20 lines
621 B
Bash
Raw Normal View History

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-02 09:32:43 +02:00
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
2025-06-02 09:32:43 +02:00
2025-06-02 10:42:24 +02:00
fc-cache
cd -
fi