2021-11-14 00:44:24 +01:00
|
|
|
# Adds the official Fish repository
|
2021-11-08 15:33:23 +01:00
|
|
|
sudo apt-add-repository ppa:fish-shell/release-3 -y
|
2021-11-14 00:44:24 +01:00
|
|
|
# Updates the list
|
2021-11-08 15:33:23 +01:00
|
|
|
sudo apt update
|
2021-11-14 00:44:24 +01:00
|
|
|
# Install Fish, fzf (for the reverse search), bat (for the colored manuals), procps (for the SSH), curl (for downloading scripts)
|
2021-11-08 15:45:03 +01:00
|
|
|
sudo apt install fish fzf bat procps curl -y
|
2021-12-23 15:02:27 +01:00
|
|
|
echo -e "\nFish installed!"
|
2021-11-14 00:44:24 +01:00
|
|
|
# Fish default shell
|
2021-11-08 17:21:39 +01:00
|
|
|
sudo chsh -s /usr/bin/fish $USER
|
2021-11-14 00:44:24 +01:00
|
|
|
# Removing motd
|
2021-11-08 15:39:31 +01:00
|
|
|
fish -c 'set -U fish_greeting'
|
2021-11-14 00:44:24 +01:00
|
|
|
# Install ^R (reversed research)
|
2021-11-08 15:33:23 +01:00
|
|
|
curl -sL https://git.io/fisher | fish -c 'source && fisher install jorgebucaran/fisher'
|
|
|
|
fish -c 'fisher install jethrokuan/fzf'
|
2021-11-14 00:44:24 +01:00
|
|
|
# Install SSH
|
2021-11-08 17:03:05 +01:00
|
|
|
rm $HOME/.config/fish/functions/fish_ssh_agent.fish 2>/dev/null; wget https://gitlab.com/kyb/fish_ssh_agent/raw/master/functions/fish_ssh_agent.fish -P $HOME/.config/fish/functions/
|
2021-11-14 00:44:24 +01:00
|
|
|
# Update the fish config with mine (edit that once installed for you)
|
2021-11-08 17:03:05 +01:00
|
|
|
rm $HOME/.config/fish/config.fish 2>/dev/null; wget https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/.config/fish/config.fish -P $HOME/.config/fish/
|
2021-11-14 00:44:24 +01:00
|
|
|
# Update the prompt with mine
|
2021-11-08 17:03:05 +01:00
|
|
|
rm $HOME/.config/fish/functions/fish_prompt.fish 2>/dev/null; wget https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/.config/fish/functions/fish_prompt.fish -P $HOME/.config/fish/functions/
|
2021-11-14 00:44:24 +01:00
|
|
|
# Updating color scheme (based on Base16 Eighties)
|
2021-11-08 17:51:45 +01:00
|
|
|
fish -c 'set -U fish_color_normal normal'
|
|
|
|
fish -c 'set -U fish_color_command 99cc99'
|
|
|
|
fish -c 'set -U fish_color_quote ffcc66'
|
|
|
|
fish -c 'set -U fish_color_redirection d3d0c8'
|
|
|
|
fish -c 'set -U fish_color_end cc99cc'
|
|
|
|
fish -c 'set -U fish_color_error f2777a'
|
|
|
|
fish -c 'set -U fish_color_param d3d0c8'
|
|
|
|
fish -c 'set -U fish_color_comment ffcc66'
|
|
|
|
fish -c 'set -U fish_color_match 6699cc'
|
|
|
|
fish -c 'set -U fish_color_selection white --bold --background=brblack'
|
|
|
|
fish -c 'set -U fish_color_search_match bryellow --background=brblack'
|
|
|
|
fish -c 'set -U fish_color_history_current --bold'
|
|
|
|
fish -c 'set -U fish_color_operator 6699cc'
|
|
|
|
fish -c 'set -U fish_color_escape 66cccc'
|
|
|
|
fish -c 'set -U fish_color_cwd green'
|
|
|
|
fish -c 'set -U fish_color_cwd_root red'
|
|
|
|
fish -c 'set -U fish_color_valid_path --underline'
|
|
|
|
fish -c 'set -U fish_color_autosuggestion 747369'
|
|
|
|
fish -c 'set -U fish_color_user brgreen'
|
|
|
|
fish -c 'set -U fish_color_host normal'
|
|
|
|
fish -c 'set -U fish_color_cancel -r'
|
|
|
|
fish -c 'set -U fish_pager_color_completion normal'
|
|
|
|
fish -c 'set -U fish_pager_color_description B3A06D yellow'
|
|
|
|
fish -c 'set -U fish_pager_color_prefix normal --bold --underline'
|
|
|
|
fish -c 'set -U fish_pager_color_progress brwhite --background=cyan'
|
2021-11-08 17:21:39 +01:00
|
|
|
|
2021-11-14 19:55:23 +01:00
|
|
|
# Adding abbrevations
|
2021-11-14 20:23:26 +01:00
|
|
|
fish -c "abbr ls 'ls -lh'"
|
2021-11-22 14:53:41 +01:00
|
|
|
fish -c "abbr cp 'cp -rv'"
|
2021-11-14 20:23:26 +01:00
|
|
|
fish -c "abbr rm 'rm -rf'"
|
|
|
|
fish -c "abbr gcc 'gcc -Wall -Wextra -fanalyzer -g'"
|
|
|
|
fish -c "abbr activate 'source bin/activate.fish'"
|
|
|
|
fish -c "abbr vs 'code .'"
|
|
|
|
fish -c "abbr untgz 'tar -xvzf'"
|
2021-12-06 16:10:17 +01:00
|
|
|
fish -c "abbr - 'cd -'"
|
2021-11-14 19:55:23 +01:00
|
|
|
if grep "WSL" /proc/version > /dev/null; # Only for WSL
|
|
|
|
then
|
2021-11-14 20:24:50 +01:00
|
|
|
fish -c "abbr bigupdate 'sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo do-release-upgrade'"
|
|
|
|
fish -c "abbr d 'explorer.exe .'"
|
2021-11-14 19:55:23 +01:00
|
|
|
else # if regular distro (i.e. Ubuntu)
|
2021-11-14 20:24:50 +01:00
|
|
|
fish -c "abbr bigupdate 'sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo snap refresh'"
|
2021-12-09 18:37:54 +01:00
|
|
|
fish -c "abbr d 'nautilus . -w &> /dev/null & disown'"
|
2021-12-02 15:26:19 +01:00
|
|
|
fish -c "abbr spotify 'LD_PRELOAD=/usr/local/lib/spotify-adblock.so spotify &> /dev/null & disown'"
|
2021-11-14 19:55:23 +01:00
|
|
|
fi
|
|
|
|
|
2021-12-28 16:29:42 +01:00
|
|
|
# Removal of Ubuntu icon
|
|
|
|
if grep "Ubuntu" /proc/version > /dev/null;
|
|
|
|
then
|
|
|
|
# We remove the Ubuntu desktop shortcut only if it already exists
|
|
|
|
if [ -f /usr/share/applications/fish.desktop ]
|
|
|
|
then
|
|
|
|
sudo mv /usr/share/applications/fish.desktop /usr/share/applications/fish.desktop.bak
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2021-12-23 15:02:27 +01:00
|
|
|
echo -e "\nFish configured! 🎉"
|
2021-11-08 17:51:45 +01:00
|
|
|
echo "You must log out to finish applying the changes."
|