diff --git a/izebra-linux-oneshot.sh b/izebra-linux-oneshot.sh index 439e26a..27795f8 100644 --- a/izebra-linux-oneshot.sh +++ b/izebra-linux-oneshot.sh @@ -11,12 +11,14 @@ fi fishconfig="https://git.izebra.net/izebra_projects/rmm-scripts/raw/branch/main/config-files/config.fish" starshipconfig="https://git.izebra.net/izebra_projects/rmm-scripts/raw/branch/main/config-files/starship.toml" -#Check for updates -echo Checking for updates... +#Add fish shell repo and install +echo Installing fish... +sudo apt-add-repository ppa:fish-shell/release-3 sudo apt update -#install fish and copy config file to root and all users under /home/ -echo Installing Fish... -sudo apt install fish -y +sudo apt install fish + + +#Copy fish config file to root and all users under /home/ echo Downloading Fish Config File. Storing in $HOME/.config/fish/config.fish wget -O "$HOME/.config/fish/config.fish" $fishconfig