From 4c5c8cf40a49ed58160bcde9492fa91afd3e534e Mon Sep 17 00:00:00 2001 From: zebra Date: Wed, 24 Jul 2024 17:03:42 -0700 Subject: [PATCH] added fish repo, newer version of fish, which supports aliasing --- izebra-linux-oneshot.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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