14 lines
301 B
Bash
Executable File
14 lines
301 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
sub="${HOME}/.local/share/fonts"
|
|
mkdir -p "${sub}"
|
|
|
|
cd "${sub}"
|
|
wget -c -O FiraCode.zip '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
|