Update update.sh

This commit is contained in:
Christoffer Martinsson 2024-04-14 09:27:57 +02:00
parent 813f1da1f5
commit 18fd281fa4

View File

@ -5,16 +5,16 @@ set -e
printf -- '\033[33m Remove neovim if already installed\n\033[37m'
sudo apt -y purge --auto-remove neovim
# Setup locals
printf -- '\033[33m Setup locals\n\033[37m'
sudo locale-gen "en_US.UTF-8"
sudo update-locale LANG=en_US.UTF-8
# Install system packages
printf -- '\033[33m Installing system packages\n\033[37m'
sudo apt update && sudo apt -y upgrade
sudo apt -y install ninja-build gettext cmake unzip curl python3 python3-pip python3-venv \
build-essential libssl-dev libffi-dev python3-dev file tmux libudev-dev pkg-config
build-essential libssl-dev libffi-dev python3-dev file tmux libudev-dev pkg-config locales
# Setup locals
printf -- '\033[33m Setup locals\n\033[37m'
sudo locale-gen "en_US.UTF-8"
sudo update-locale LANG=en_US.UTF-8
# Install fzf
printf -- '\033[33m Installing fzf\n\033[37m'