16 lines
305 B
Fish
Executable file
16 lines
305 B
Fish
Executable file
#!/bin/env fish
|
|
begin
|
|
set -l dir (status dirname)
|
|
source "$dir/../../Scripts/software.fish"
|
|
|
|
function installSW -V dir
|
|
yayinst firefox
|
|
end
|
|
|
|
function configureSW -V dir
|
|
fish "$dir/../../../Common/Software/Firefox/main.fish" configure
|
|
end
|
|
|
|
runInstaller $argv
|
|
end
|