12 lines
276 B
Bash
Executable File
12 lines
276 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
sub="$HOME/.local/share/fonts"
|
|
|
|
mkdir -p "$sub"
|
|
cd "$sub"
|
|
wget 'https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/FiraCode.zip'
|
|
unzip FiraCode.zip -d "$sub"
|
|
git clone 'https://github.com/powerline/fonts.git' --depth=1
|
|
cd fonts
|
|
./install.sh
|