Automatically install enumerated software

This commit is contained in:
Manuel Thalmann 2024-07-15 09:41:02 +02:00
commit ed065e6991
4 changed files with 5 additions and 5 deletions
scripts/Arch/Scripts

View file

@ -4,10 +4,10 @@ begin
source "$dir/../../Common/Scripts/software.fish"
function yayinst -d "Install yay-package non-interactively"
yay --noconfirm --needed --answerclean=None --answerdiff=None $argv
yay --noconfirm --needed --answerclean=None --answerdiff=None -Syu $argv
end
function pacinst -d "Install pacman-package non-interactively"
sudo pacman --noconfirm --needed $argv
sudo pacman --noconfirm --needed -Syu $argv
end
end