Add tweaks to setup scripts
This commit is contained in:
parent
863f6df3f8
commit
8849387f1c
18
archsetup.sh
18
archsetup.sh
|
@ -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 "=================="
|
||||
|
|
Loading…
Reference in a new issue