2024-07-13 13:12:35 +00:00
|
|
|
#!/bin/env fish
|
|
|
|
set -l dir (status dirname)
|
2024-07-13 13:49:55 +00:00
|
|
|
|
|
|
|
function initialize -V dir
|
|
|
|
"$dir/../Software/base-devel/install.sh"
|
|
|
|
"$dir/../Config/pacman/install.sh"
|
|
|
|
"$dir/../Software/yay/install.sh"
|
|
|
|
end
|
|
|
|
|
|
|
|
if not type -q installSoftware
|
|
|
|
function installSoftware
|
2024-07-13 15:28:06 +00:00
|
|
|
"$dir/../Collections/personal.sh";
|
2024-07-13 13:49:55 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-07-13 13:12:35 +00:00
|
|
|
source "$dir/../../Common/OS/install.fish"
|