PortValhalla/scripts/Common/Software/zoxide/main.fish

20 lines
498 B
Fish
Raw Normal View History

2024-07-16 12:28:32 +00:00
#!/bin/env fish
begin
set -l dir (status dirname)
source "$dir/../../Scripts/software.fish"
function installSW
configureSW
end
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"
sudo pwsh -NoProfile "$dir/install.ps1"
end
runInstaller $argv
end