警告
      
      
        本文最后更新于 2023-11-04,文中内容可能已过时。
       
     nerd font 是一款优秀的字体,提供了大量的图标,可以用于 terminal、vim 等终端显示。
| 1
2
3
4
5
6
7
8
 | #/bin/bash
# install DroidSansMono Nerd Font --> u can choose another at: https://www.nerdfonts.com/font-downloads
echo "[-] Download fonts [-]"
echo "https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/DroidSansMono.zip"
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/DroidSansMono.zip
unzip DroidSansMono.zip -d ~/.fonts
fc-cache -fv
echo "done!"
 | 
 
| 1
2
3
4
5
6
7
8
9
 | mkdir -p ~/.fonts
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v3.0.2/SourceCodePro.zip
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v3.0.2/NerdFontsSymbolsOnly.zip
unzip SourceCodePro.zip
cd SourceCodePro
cp ./* ~/.fonts
fc-cache -fv
 |