Add tweaks to setup scripts

This commit is contained in:
Rodolfo 2024-07-01 09:20:46 +08:00
parent 863f6df3f8
commit 8849387f1c

View file

@ -105,6 +105,24 @@ while true;do
fi
done
echo -e "\n\n\n\n"
echo ""
echo "========"
echo " Tweaks "
echo "========"
echo ""
# Get JetBrainsMono font
font_PATH="$home_PATH/.local/share/fonts"
if [[ ! -d $font_PATH ]]; then
echo "mkdir $font_PATH"
fi
echo "cd $font_PATH"
echo "wget https://github.com/ryanoasis/nerd-fonts/releases/latest/download/JetBrainsMono.tar.xz"
echo "cd $font_PATH && tar -xvf JetBrainsMono.tar.xz"
echo "cd ''"
echo ""
echo -e "\n\n\n\n"
echo ""
echo "=================="