2019-09-30 13:44:02 +02:00
|
|
|
#!/bin/bash
|
2019-10-01 11:59:31 +02:00
|
|
|
#
|
2019-10-01 08:50:17 +02:00
|
|
|
# Installs the core system
|
|
|
|
# @author Kevin Veen-Birkenbach [aka. Frantz]
|
2019-10-01 12:30:27 +02:00
|
|
|
#
|
|
|
|
# shellcheck source=/dev/null # Deactivate SC1090
|
|
|
|
source "$(dirname "$(readlink -f "${0}")")/base.sh"
|
2019-09-30 17:19:27 +02:00
|
|
|
echo "Start setup of customized core software..."
|
2019-09-30 13:44:02 +02:00
|
|
|
echo "Synchronising packages..."
|
2019-10-03 20:32:52 +02:00
|
|
|
echo "Synchronizing programing language interpreters..."
|
2019-09-30 13:44:02 +02:00
|
|
|
sudo pacman --needed -S jdk11-openjdk python php
|
2019-10-04 11:49:05 +02:00
|
|
|
echo "Synchronizing compression tools..."
|
|
|
|
sudo pacman --needed -S p7zip
|
2019-09-30 13:44:02 +02:00
|
|
|
echo "Synchronizing administration tools..."
|
|
|
|
sudo pacman --needed -S htop tree git base-devel yay make gcc cmake
|
2019-09-30 17:19:27 +02:00
|
|
|
echo "Synchronizing security tools..."
|
2019-10-02 17:33:24 +02:00
|
|
|
sudo pacman --needed -S ecryptfs-utils encfs keepassxc
|
2019-09-30 17:19:27 +02:00
|
|
|
echo "Setup SSH key"
|
2019-09-30 16:13:26 +02:00
|
|
|
ssh_key_path="$HOME/.ssh/id_rsa"
|
|
|
|
if [ ! -f "$ssh_key_path" ]; then
|
|
|
|
echo "SSH key $ssh_key_path doesn't exists!"
|
|
|
|
if [ ! -f "./data$ssh_key_path" ]; then
|
|
|
|
echo "Importing ssh key from data..."
|
|
|
|
bash ./scripts/export-data-to-system.sh
|
|
|
|
else
|
|
|
|
echo "Generating ssh key"
|
|
|
|
ssh-keygen -t rsa -b 4096 -C "$USER@$HOSTNAME"
|
|
|
|
fi
|
|
|
|
fi
|
2019-09-30 14:47:48 +02:00
|
|
|
echo "Synchronizing gui tools..."
|
|
|
|
sudo pacman --needed -S gnome-shell-extensions
|
2019-10-03 20:32:52 +02:00
|
|
|
echo "->Install NASA picture of the day GNOME extension..."
|
2019-10-01 07:55:33 +02:00
|
|
|
git clone https://github.com/Elinvention/gnome-shell-extension-nasa-apod.git "$HOME/.local/share/gnome-shell/extensions/nasa_apod@elinvention.ovh"
|
2019-09-30 14:47:48 +02:00
|
|
|
gnome-shell-extension-tool -e nasa_apod@elinvention.ovh
|
2019-09-30 23:51:06 +02:00
|
|
|
echo "Synchronizing web tools..."
|
2019-10-01 18:05:55 +02:00
|
|
|
sudo pacman --needed -S chromium firefox firefox-ublock-origin firefox-extension-https-everywhere firefox-dark-reader
|
2019-09-30 13:44:02 +02:00
|
|
|
echo "Synchronizing office tools..."
|
2019-10-01 11:59:31 +02:00
|
|
|
sudo pacman --needed -S ttf-liberation libreoffice-fresh \
|
|
|
|
libreoffice-fresh-de libreoffice-fresh-eo libreoffice-fresh-es libreoffice-fresh-nl \
|
|
|
|
hunspell \
|
|
|
|
hunspell-de hunspell-es_es hunspell-en_US hunspell-nl
|
|
|
|
echo "Synchronizing grafic tools..."
|
2019-09-30 23:51:06 +02:00
|
|
|
sudo pacman --needed -S gimp
|
2019-09-30 13:44:02 +02:00
|
|
|
echo "Synchronizing communication tools..."
|
2019-10-01 17:02:40 +02:00
|
|
|
yay -S slack-desktop skypeforlinux-stable-bin
|
2019-09-30 13:44:02 +02:00
|
|
|
echo "Synchronizing development tools..."
|
2019-10-03 20:32:52 +02:00
|
|
|
echo "->Synchronizing code quality tools..."
|
2019-10-01 07:55:33 +02:00
|
|
|
sudo pacman --needed -S shellcheck
|
2019-10-03 22:18:44 +02:00
|
|
|
echo "-Synchronizing language servers..."
|
|
|
|
yay -S ccls
|
2019-10-03 20:32:52 +02:00
|
|
|
echo "->Synchronizing visualization tools..."
|
2019-09-30 13:44:02 +02:00
|
|
|
sudo pacman --needed -S dia
|
2019-10-03 20:32:52 +02:00
|
|
|
echo "->Synchronizing IDE's..."
|
2019-10-05 20:16:30 +02:00
|
|
|
sudo pacman --needed -S eclipse-java atom arduino arduino-docs
|
|
|
|
echo "-->Add user to arduino relevant groups..."
|
|
|
|
usermod -a -G uucp $USER
|
|
|
|
usermod -a -G lock $USER
|
2019-10-03 20:32:52 +02:00
|
|
|
echo "-->Installing atom packages..."
|
2019-09-30 13:44:02 +02:00
|
|
|
apm install -c \
|
|
|
|
atom-ide-ui\
|
|
|
|
ide-bash\
|
|
|
|
ide-python\
|
|
|
|
ide-c-cpp\
|
|
|
|
ide-java\
|
|
|
|
ide-yaml\
|
|
|
|
atom-autocomplete-php\
|
|
|
|
es6-snippets\
|
|
|
|
javascript-snippets\
|
|
|
|
emmet\
|
|
|
|
git-blame\
|
|
|
|
git-plus\
|
|
|
|
script\
|
|
|
|
ask-stack\
|
|
|
|
atom-beautify\
|
|
|
|
highlight-selected\
|
|
|
|
autocomplete-paths\
|
|
|
|
todo-show\
|
2019-10-01 08:50:17 +02:00
|
|
|
docblockr
|
2019-09-30 13:44:02 +02:00
|
|
|
npm i -g bash-language-server #Needed by atom-package ide-bash
|
2019-10-03 20:32:52 +02:00
|
|
|
echo "->Synchronizing containerization tools..."
|
|
|
|
echo "-->Installing docker..."
|
2019-10-04 11:49:05 +02:00
|
|
|
sudo pacman --needed -S docker docker-compose
|
2019-10-03 20:32:52 +02:00
|
|
|
echo "-->Add current user($USER) to user group docker..."
|
2019-10-01 07:55:33 +02:00
|
|
|
sudo usermod -a -G docker "$USER"
|
2019-10-03 20:32:52 +02:00
|
|
|
echo "-->Enable docker service..."
|
2019-09-30 14:47:48 +02:00
|
|
|
sudo systemctl enable docker --now
|
2019-10-03 20:32:52 +02:00
|
|
|
echo "->Synchronizing orchestration tools..."
|
2019-10-01 08:03:57 +02:00
|
|
|
sudo pacman --needed -S ansible
|
2019-10-03 20:32:52 +02:00
|
|
|
echo "Installing entertainment software..."
|
2019-10-03 21:15:02 +02:00
|
|
|
echo "->Sznchronizing audio software..."
|
2019-10-03 22:18:44 +02:00
|
|
|
sudo pacman -S rhythmbox
|
2019-10-03 20:32:52 +02:00
|
|
|
echo "->Synchronizing games..."
|
2019-09-30 13:44:02 +02:00
|
|
|
sudo pacman --needed -S 0ad warzone2100
|
2019-10-03 20:32:52 +02:00
|
|
|
echo "->Synchronizing emulationstation..."
|
2019-10-02 16:41:44 +02:00
|
|
|
yay -S emulationstation #retroarch joyutils jstest-gtk-git
|
|
|
|
yay -S libretro-snes9x-next-git libretro-quicknes-git libretro-fceumm-git libretro-prosystem-git libretro-gambatte-git libretro-mgba-git
|
2019-10-03 20:32:52 +02:00
|
|
|
echo "-->Installing themes..."
|
2019-10-02 16:41:44 +02:00
|
|
|
mkdir .emulationstation/themes
|
|
|
|
git clone https://github.com/RetroPie/es-theme-carbon .emulationstation/themes/carbon
|
2019-09-30 13:44:02 +02:00
|
|
|
echo "More game recomendations you will find here: https://wiki.archlinux.org/index.php/List_of_games..."
|
|
|
|
echo "More software recomendations you will find here: https://wiki.archlinux.org/index.php/list_of_applications"
|