Add desired software to the personal profile

This commit is contained in:
Manuel Thalmann 2023-04-04 17:16:35 +02:00
parent aa14c68131
commit 3a7e21e435

View file

@ -3,9 +3,12 @@ pushd "${BASH_SOURCE%/*}" > /dev/null;
. "../Software/yay/install.sh"; . "../Software/yay/install.sh";
# Essentials
yay --noconfirm -Syu \ yay --noconfirm -Syu \
wget \ wget \
oh-my-posh-bin; oh-my-posh-bin \
screen \
vim;
# GRUB Shenanigans # GRUB Shenanigans
. "../Software/minegrub-theme/install.sh"; . "../Software/minegrub-theme/install.sh";
@ -40,7 +43,51 @@ EXTENSION_POLICY_DIR="$braveExtensions" \
ln -s "$braveExtensions" /opt/brave.com/brave-beta/extensions; ln -s "$braveExtensions" /opt/brave.com/brave-beta/extensions;
ln -s "$braveExtensions" /opt/brave.com/brave-nightly/extensions; ln -s "$braveExtensions" /opt/brave.com/brave-nightly/extensions;
# Tools
yay --noconfirm -Syu \
bitwarden \
signal-desktop \
bottles \
extension-manager \
easyeffects \
threema-desktop;
# Media
yay --noconfirm -Syu electron13-bin;
yay --noconfirm -Syu \
ytmdesktop;
# Coding
yay --noconfirm -Syu \
vscodium-bin \
vscodium-insiders-bin \
visual-studio-code-bin \
visual-studio-code-insiders-bin \
godot-mono-bin;
# Node.js
. "../Software/NVS/install.sh";
# Python
yay --noconfirm -Syu \
python \
python-pip \
pyenv \
python-pipenv;
# Docker
yay --noconfirm -Syu \
docker \
docker-compose \
docker-buildx;
# Misc # Misc
. "../Software/logo-ls/install.sh"; . "../Software/logo-ls/install.sh";
. "../Software/Virtual Machine Manager/install.sh";
yay --noconfirm -Syu \
vim \
tea \
woodpecker-cli;
popd > /dev/null; popd > /dev/null;