PortValhalla/scripts/Arch/Scripts/software.fish

14 lines
383 B
Fish
Raw Normal View History

#!/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:40:10 +00:00
yay --noconfirm --needed --answerclean=None --answerdiff=None $argv
end
function pacinst -d "Install pacman-package non-interactively"
sudo pacman --noconfirm --needed $argv
end
end