Added noconfirm to pacman commands

This commit is contained in:
2020-12-31 13:39:16 +11:00
parent c9e9cc9bb7
commit 4dd1c5dd5d
3 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/sh #!/usr/bin/sh
# Install GoLang # Install GoLang
pacman -Sy go pacman -Sy --noconfirm go
# Install cordless # Install cordless
git clone https://github.com/Bios-Marcel/cordless.git git clone https://github.com/Bios-Marcel/cordless.git

View File

@ -1,6 +1,6 @@
#!/usr/bin/sh #!/usr/bin/sh
# Install VSCode # Install VSCode
pacman -Sy vscode pacman -Sy --noconfirm vscode
# VLC Media Player # VLC Media Player
pacman -Sy vlc pacman -Sy --noconfirm vlc

View File

@ -1,10 +1,10 @@
#!/usr/bin/sh #!/usr/bin/sh
# Install VIM # Install VIM
pacman -Sy vim pacman -Sy --noconfirm vim
# Install Screen # Install Screen
pacman -Sy screen pacman -Sy --noconfirm screen
# Install NVM # Install NVM
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
@ -20,11 +20,11 @@ nvm install --lts
npm i -g yarn npm i -g yarn
# Install rTorrent # Install rTorrent
pacman -Sy rtorrent pacman -Sy --noconfirm rtorrent
cp ./configurations/rtorrent.rc ~/.rtorrent.rc cp ./configurations/rtorrent.rc ~/.rtorrent.rc
# RAR # RAR
pacman -Sy unrar pacman -Sy --noconfirm unrar
# GCC # GCC
pacman -Sy gcc pacman -Sy --noconfirm gcc