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
# Install GoLang
pacman -Sy go
pacman -Sy --noconfirm go
# Install cordless
git clone https://github.com/Bios-Marcel/cordless.git

View File

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

View File

@ -1,10 +1,10 @@
#!/usr/bin/sh
# Install VIM
pacman -Sy vim
pacman -Sy --noconfirm vim
# Install Screen
pacman -Sy screen
pacman -Sy --noconfirm screen
# Install NVM
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
# Install rTorrent
pacman -Sy rtorrent
pacman -Sy --noconfirm rtorrent
cp ./configurations/rtorrent.rc ~/.rtorrent.rc
# RAR
pacman -Sy unrar
pacman -Sy --noconfirm unrar
# GCC
pacman -Sy gcc
pacman -Sy --noconfirm gcc