You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
374 B
Bash
11 lines
374 B
Bash
#!/bin/bash
|
|
|
|
mkdir -p $HOME/.local/share/fonts/hack
|
|
cd $HOME/.local/share/fonts/hack
|
|
curl -fLO https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/Hack.zip
|
|
unzip Hack.zip
|
|
rm -rf Hack.zip
|
|
mv 'Hack Regular Nerd Font Complete.ttf' $HOME/.local/share/fonts
|
|
mv 'Hack Regular Nerd Font Complete Mono.ttf' $HOME/.local/share/fonts
|
|
rm -rf $HOME/.local/share/fonts/hack
|