Add desired software to the personal profile
This commit is contained in:
parent
dc993542e7
commit
b54153fd7a
1 changed files with 48 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue