diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..aceb9f9 --- /dev/null +++ b/.vscode/settings.json @@ -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" +} \ No newline at end of file diff --git a/default/install.sh b/default/install.sh new file mode 100644 index 0000000..012cee5 --- /dev/null +++ b/default/install.sh @@ -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 +} diff --git a/default/update.sh b/default/update.sh new file mode 100644 index 0000000..030350d --- /dev/null +++ b/default/update.sh @@ -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 +} diff --git a/default_installation.sh b/default_installation.sh new file mode 100644 index 0000000..4e164a9 --- /dev/null +++ b/default_installation.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +source ./default/update.sh +source ./default/install.sh + +update +install diff --git a/software_dev/install.sh b/software_dev/install.sh new file mode 100644 index 0000000..a3748b6 --- /dev/null +++ b/software_dev/install.sh @@ -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 +} \ No newline at end of file diff --git a/software_dev_installation.sh b/software_dev_installation.sh new file mode 100644 index 0000000..5c400a1 --- /dev/null +++ b/software_dev_installation.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +source ./software_dev/install.sh + +software_dev_install