diff --git a/src/applications.sh b/src/applications.sh index b22eef2..52b5d8b 100644 --- a/src/applications.sh +++ b/src/applications.sh @@ -28,3 +28,10 @@ sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/v sudo apt install code -y sudo apt update -y sudo apt upgrade -y + +#Chrome https://askubuntu.com/questions/510056/how-to-install-google-chrome +wget https://dl-ssl.google.com/linux/linux_signing_key.pub -O /tmp/google.pub +gpg --no-default-keyring --keyring /etc/apt/keyrings/google-chrome.gpg --import /tmp/google.pub +echo 'deb [arch=amd64 signed-by=/etc/apt/keyrings/google-chrome.gpg] http://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list +sudo apt-get update -y +sudo apt-get install google-chrome-stable -y