2024-07-16 20:18:39 +00:00
|
|
|
#!/bin/env fish
|
|
|
|
begin
|
|
|
|
set -l dir (status dirname)
|
|
|
|
source "$dir/../../Scripts/software.fish"
|
|
|
|
|
|
|
|
function installSW -V dir
|
|
|
|
pacinst \
|
|
|
|
grub \
|
|
|
|
efibootmgr \
|
|
|
|
os-prober
|
|
|
|
|
2024-07-20 01:27:36 +00:00
|
|
|
fish "$dir/../../../Common/Software/GRUB/main.fish" configure
|
2024-07-16 20:18:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
runInstaller $argv
|
|
|
|
end
|