Added first scripts

This commit is contained in:
edraft 2021-02-28 09:43:12 +01:00
parent 261377b401
commit 422ccd64d3
6 changed files with 70 additions and 0 deletions

19
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#ab307e",
"activityBar.activeBorder": "#25320e",
"activityBar.background": "#ab307e",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#25320e",
"activityBarBadge.foreground": "#e7e7e7",
"statusBar.background": "#832561",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#ab307e",
"titleBar.activeBackground": "#832561",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#83256199",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#832561"
}

21
default/install.sh Normal file
View File

@ -0,0 +1,21 @@
#!/bin/bash
default_install() {
echo 'Installing:'
sudo add-apt-repository ppa:agornostal/ulauncher
sudo apt-get update -y
sudo apt-get install ulauncher -y
sudo apt-get install net-tools htop tree zip unzip neofetch -y
sudo apt-get install stacer -y
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i ./google-chrome-stable_current_amd64.deb
rm google-chrome-stable_current_amd64.deb
sudo snap install simplenote
# wget https://github.com/Peltoche/lsd/releases/download/0.19.0/lsd-musl_0.19.0_amd64.deb
# sudo dpkg -i lsd_0.19.0_amd64.deb
# rm lsd_0.19.0_amd64.deb
}

10
default/update.sh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/bash
update() {
echo 'Starting update:'
sudo apt-get update -y
echo 'Starting upgrade:'
sudo apt-get upgrade -y
echo 'Starting dist-upgrade:'
sudo apt-get dist-upgrade -y
}

7
default_installation.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
source ./default/update.sh
source ./default/install.sh
update
install

8
software_dev/install.sh Normal file
View File

@ -0,0 +1,8 @@
#!/bin/bash
software_dev_install() {
sudo snap install --classic code
sudo snap install pycharm-community --classic
sudo apt-get install git-all
}

View File

@ -0,0 +1,5 @@
#!/bin/bash
source ./software_dev/install.sh
software_dev_install