configs/install-stuff/install-fish.bash

37 lines
954 B
Bash
Raw Permalink Normal View History

2023-09-13 10:17:03 -05:00
#!/usr/bin/env bash
set -e
if [ $(whoami) == "root" ]; then
echo "Run as a normal user, not root"
exit 1
fi
command_exists() { type "$1" &>/dev/null; }
if command_exists "apt-get"; then
sudo apt-get install fish -y
elif command_exists "yum"; then
sudo yum install fish -y
2024-07-10 13:21:06 -05:00
elif command_exists "rpm-ostree" && ! command_exists "fish"; then
rpm-ostree install fish -y
read -p "Press enter to reboot, then run do-everything.bash again"
reboot
2023-09-13 10:17:03 -05:00
elif command_exists "pacman"; then
2024-07-10 14:29:31 -05:00
sudo pacman -S fish --noconfirm
2023-09-13 10:17:03 -05:00
elif command_exists "zypp"; then
# Untested
sudo zypper install fish -y
elif command_exists "emerge"; then
sudo echo Not yet supported, exiting...
exit
elif command_exists "apk"; then
sudo apk add fish
elif command_exists "xbps-install"; then
sudo xbps-install fish-shell -y
2023-09-13 10:17:03 -05:00
else
echo "Unsupported: unknown package manager and distro"
exit
fi
2023-11-23 16:03:11 -06:00
chsh -s $(readlink -f $(which fish))