2024-07-13 16:36:24 +00:00
|
|
|
#!/bin/env fish
|
|
|
|
begin
|
|
|
|
set -l dir (status dirname)
|
|
|
|
source "$dir/../../Common/Scripts/software.fish"
|
|
|
|
|
2024-07-14 07:48:23 +00:00
|
|
|
function yayinst -d "Install yay-package non-interactively"
|
2024-07-15 07:41:02 +00:00
|
|
|
yay --noconfirm --needed --answerclean=None --answerdiff=None -Syu $argv
|
2024-07-13 16:36:24 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function pacinst -d "Install pacman-package non-interactively"
|
2024-07-15 07:41:02 +00:00
|
|
|
sudo pacman --noconfirm --needed -Syu $argv
|
2024-07-13 16:36:24 +00:00
|
|
|
end
|
|
|
|
end
|