machine_setup/setup/programs/others/nerd-font.sh

33 lines
621 B
Bash
Raw Normal View History

2024-01-21 19:09:11 +00:00
#/bin/bash
unameOut="$(uname -s)"
case "${unameOut}" in
Linux*)
machine=Linux;;
Darwin*)
machine=Mac;;
CYGWIN*)
machine=Cygwin;;
MINGW*)
machine=MinGw;;
MSYS_NT*)
machine=Git;;
*)
machine="UNKNOWN:${unameOut}"
esac
if [ "$machine" = "Mac" ]
then
2024-01-21 17:22:26 +00:00
brew tap homebrew/cask-fonts
brew install font-hack-nerd-font
2024-01-21 19:09:11 +00:00
fi
if [ "$machine" = "Linux" ]
then
echo "[-] Download fonts [-]"
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/DroidSansMono.zip
unzip DroidSansMono.zip -d ~/.fonts
fc-cache -fv
echo "done!"
fi