mirror of
https://github.com/zedsalim/debian-z.git
synced 2025-12-06 03:19:28 +00:00
32 lines
No EOL
542 B
Bash
Executable file
32 lines
No EOL
542 B
Bash
Executable file
#!/bin/bash
|
|
|
|
sudo nala install -y fonts-font-awesome fonts-powerline
|
|
|
|
fonts_dir="$HOME/.local/share/fonts"
|
|
|
|
if [[ ! -d "$fonts_dir" ]]; then
|
|
mkdir -p "$fonts_dir"
|
|
fi
|
|
|
|
cd /tmp
|
|
fonts=(
|
|
"FiraCode"
|
|
"JetBrainsMono"
|
|
)
|
|
|
|
for font in ${fonts[@]}
|
|
do
|
|
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/$font.zip
|
|
unzip $font.zip -d $HOME/.local/share/fonts/$font/
|
|
rm $font.zip
|
|
done
|
|
|
|
cd
|
|
cd debian-z/
|
|
tar xzvf Hack-NerdFont.tar.gz
|
|
cd Hack-NerdFont/
|
|
mv *ttf ~/.local/share/fonts
|
|
cd ..
|
|
rm -r Hack-NerdFont/
|
|
|
|
fc-cache -fv |