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