16 lines
310 B
Fish
Executable file
16 lines
310 B
Fish
Executable file
#!/bin/env fish
|
|
begin
|
|
set -l dir (status dirname)
|
|
source "$dir/../../Scripts/software.fish"
|
|
inherit "$dir/../../../Common/Software/grub/main.fish"
|
|
|
|
function installSW -V dir
|
|
pacinst \
|
|
grub \
|
|
efibootmgr \
|
|
os-prober
|
|
end
|
|
|
|
runInstaller $argv
|
|
end
|