Improved apps

This commit is contained in:
Sven Heidemann 2021-04-14 15:46:14 +02:00
parent 8aeaeffb27
commit 4c60090c7b
4 changed files with 11 additions and 8 deletions

View File

@ -2,5 +2,5 @@
install_barrier() {
echo "Installing barrier"
sudo snap install barrier
sudo apt-get install barrier -y
}

View File

@ -1,6 +0,0 @@
#!/bin/bash
install_vscode() {
echo "Installing VS Code"
sudo snap install --classic code
}

9
common/apps/vscode.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/bash
install_vscode() {
echo "Installing VS Code"
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"
sudo apt-get update
sudo apt-get install code -y
}

View File

@ -3,5 +3,5 @@
first_install() {
echo 'Installing useful apps'
sudo apt-get install net-tools nano htop tree zip unzip -y
sudo apt-get install net-tools nano htop tree zip unzip curl wget -y
}