forked from sh-edraft.de/sh_linux_installation_scripts
Improved apps
This commit is contained in:
parent
8aeaeffb27
commit
4c60090c7b
@ -2,5 +2,5 @@
|
||||
|
||||
install_barrier() {
|
||||
echo "Installing barrier"
|
||||
sudo snap install barrier
|
||||
sudo apt-get install barrier -y
|
||||
}
|
@ -1,6 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
install_vscode() {
|
||||
echo "Installing VS Code"
|
||||
sudo snap install --classic code
|
||||
}
|
9
common/apps/vscode.sh
Normal file
9
common/apps/vscode.sh
Normal 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
|
||||
}
|
@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user