mirror of
https://github.com/zedsalim/debian-z.git
synced 2025-12-06 03:19:28 +00:00
34 lines
657 B
Bash
Executable file
34 lines
657 B
Bash
Executable file
#!/bin/bash
|
|
|
|
sudo nala install -y fonts-font-awesome fonts-powerline fonts-noto fonts-sil-scheherazade fonts-dejavu
|
|
|
|
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/fonts
|
|
tar xzvf Hack-NerdFont.tar.gz
|
|
unzip JetBrainsMono.zip
|
|
mv *ttf ~/.local/share/fonts
|
|
cd Hack-NerdFont/
|
|
mv *ttf ~/.local/share/fonts
|
|
cd ..
|
|
rm -rf
|
|
|
|
fc-cache -fv
|