10 lines
416 B
Bash
Executable file
10 lines
416 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#MISE description="Install Monaspace Nerd-Patched Fonts"
|
|
echo Downloading Monaspace nerd-patched fonts to /usr/share/fonts
|
|
echo "Sudo required. Final font name will be Monaspice"
|
|
|
|
sudo mkdir -p /usr/share/fonts/Monaspice
|
|
|
|
curl -sSL https://github.com/ryanoasis/nerd-fonts/releases/latest/download/Monaspace.tar.xz | sudo tar xJf - -C /usr/share/fonts/Monaspice
|
|
|
|
echo "/usr/share/fonts/Monaspice"
|