2024-07-15 10:10:06 +00:00
|
|
|
#!/bin/env fish
|
|
|
|
begin
|
2024-07-15 18:24:47 +00:00
|
|
|
set -l dir (status dirname)
|
2024-10-12 16:13:41 +00:00
|
|
|
set -l base "$dir/Main.ps1"
|
2024-07-15 10:10:06 +00:00
|
|
|
source "$(status dirname)/../../Scripts/software.fish"
|
|
|
|
|
2024-10-11 23:54:31 +00:00
|
|
|
function configureSW -S -V base
|
|
|
|
pwsh "$base" Configure
|
2024-07-20 02:06:41 +00:00
|
|
|
end
|
|
|
|
|
2024-10-11 23:54:31 +00:00
|
|
|
function userConfig -S -V base -a name
|
|
|
|
runPSUserConfig "$base" $name
|
2024-07-20 02:06:41 +00:00
|
|
|
end
|
|
|
|
|
2024-07-19 23:51:14 +00:00
|
|
|
runInstaller $argv
|
2024-07-15 10:10:06 +00:00
|
|
|
end
|