Add install-fish
This commit is contained in:
parent
afc1708bf5
commit
7e8acc3f96
1 changed files with 30 additions and 0 deletions
30
install-stuff/install-fish.bash
Executable file
30
install-stuff/install-fish.bash
Executable file
|
@ -0,0 +1,30 @@
|
||||||
|
#!/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
|
||||||
|
elif command_exists "pacman"; then
|
||||||
|
yay -S fish
|
||||||
|
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
|
||||||
|
else
|
||||||
|
echo "Unsupported: unknown package manager and distro"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
chsh -s $(which fish)
|
Loading…
Reference in a new issue