2024-07-16 12:28:32 +00:00
|
|
|
#!/bin/env fish
|
|
|
|
begin
|
|
|
|
set -l dir (status dirname)
|
|
|
|
source "$dir/../../Scripts/software.fish"
|
|
|
|
|
|
|
|
function configureSW -V dir
|
|
|
|
source "$dir/../bash/profile.fish"
|
2024-07-16 20:12:19 +00:00
|
|
|
source "$dir/../fish/profile.fish"
|
2024-07-16 12:28:32 +00:00
|
|
|
echo 'eval "$(zoxide init bash)"' | installBashProfile "zoxide"
|
|
|
|
echo "zoxide init fish | source" | installFishProfile "zoxide"
|
2024-09-19 20:24:36 +00:00
|
|
|
sudo -HE pwsh -NoProfile "$dir/Main.ps1" Configure
|
2024-07-16 12:28:32 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
runInstaller $argv
|
|
|
|
end
|