PortValhalla/scripts/Arch/OS/install.fish

19 lines
430 B
Fish
Raw Normal View History

2024-07-13 13:12:35 +00:00
#!/bin/env fish
2024-07-14 01:05:26 +00:00
begin
set -l dir (status dirname)
2024-07-13 13:49:55 +00:00
2024-07-14 01:05:26 +00:00
function initialize -V dir
source "$dir/../Software/base-devel/main.fish"
2024-07-14 07:44:32 +00:00
source "$dir/../Software/pacman/main.fish"
2024-07-14 01:05:26 +00:00
"$dir/../Software/yay/install.sh"
end
2024-07-13 13:49:55 +00:00
2024-07-14 01:05:26 +00:00
if not type -q installSoftware
function installSoftware
"$dir/../Collections/personal.sh";
end
2024-07-13 13:49:55 +00:00
end
2024-07-14 01:05:26 +00:00
source "$dir/../../Common/OS/install.fish"
end