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