Added some comments

This commit is contained in:
2022-09-17 11:52:45 -07:00
parent c88b024cf9
commit b57099c443
2 changed files with 10 additions and 3 deletions

View File

@ -18,6 +18,5 @@
- Fix controller and shortcuts
```
sudo apt install --assume-yes git
git clone https://github.com/YourWishes/dotenv && cd dotenv && chmod +x ./dotenv.sh && ./dotenv.sh
```

View File

@ -6,6 +6,7 @@ if [[ "$EUID" -eq 0 ]]; then
exit 1
fi
echo -e "\n\n\nPerforming Upgrades\n\n\n"
# Update, run twice incase of keychain updates
sudo pacman -Syuu -q --noconfirm
@ -16,6 +17,7 @@ flatpak update --assumeyes
# Install the tools I like to use in the CLI
echo -e "\n\n\nInstalling CLI Tools\n\n\n"
sudo pacman -S -q --noconfirm \
base-devel \
unrar \
@ -31,8 +33,8 @@ sudo pacman -S -q --noconfirm \
# Install over pacman programs I use
mkdir -p ~/Applications
sudo pacman -S -q --noconfirm
echo -e "\n\n\nInstalling Pacman Desktop Programs\n\n\n"
sudo pacman -S -q --noconfirm \
firefox \
gparted \
solaar \
@ -62,6 +64,7 @@ sudo pacman -S -q --noconfirm
# Install programs using flatpak
echo -e "\n\n\nInstalling FlatPak Desktop Programs\n\n\n"
flatpak install flathub \
com.bitwarden.desktop \
com.obsproject.Studio \
@ -78,6 +81,7 @@ flatpak install flathub \
# VS Code (AUR)
echo -e "\n\n\nInstalling VSCode\n\n\n"
git clone https://aur.archlinux.org/visual-studio-code-bin
cd visual-studio-code-bin
makepkg -si --noconfirm
@ -85,6 +89,7 @@ cd ..
# pCloud
echo -e "\n\n\nInstalling pCloud\n\n\n"
if [ ! -f "~/Applications/pcloud" ]; then
wget https://p-def8.pcloud.com/cBZu1eKrMZMqwjTqZZZh9ILr7Z2ZZmNzZkZPF7pVZrHZrzZBpZpRZc5Z6pZopZ9pZApZGFZUJZkJZPpZkzZWTVkVZQDtD9nHvjKu7c1tTLeXYVj05EfNk/pcloud -O ~/Applications/pcloud
chmod +x ~/Applications/pcloud
@ -93,6 +98,7 @@ fi
# PIA
echo -e "\n\n\nInstalling Private Internet Access\n\n\n"
if ! command -v piactl &> /dev/null
then
wget https://installers.privateinternetaccess.com/download/pia-linux-3.3.1-06924.run -O ~/Downloads/pia.run
@ -105,6 +111,7 @@ fi
# Node JS / NVM
echo -e "\n\n\nNodeJS\n\n\n"
if ! command -v nvm &> /dev/null
then
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
@ -118,6 +125,7 @@ npm i -g yarn
# VIM
echo -e "\n\n\nVIM\n\n\n"
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
cp ./configs/vimrc-plugins ~/.config/nvim/init.vim
vim +"PlugInstall --sync" +qa