configs/zsh/zsh-setup.bash

34 lines
806 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2023-08-21 13:13:13 -05:00
# Exit if there's an error
set -e
2023-08-20 21:35:16 -05:00
if [ $(whoami) != "root" ]; then
SUDO="sudo"
2023-08-30 22:15:13 -05:00
else
echo "Run as a normal user, not root"
exit 1
fi
2023-08-30 22:15:13 -05:00
command_exists() { type "$1" &>/dev/null; }
2023-08-20 21:35:16 -05:00
if command_exists "apt-get"; then
2023-09-06 15:18:40 -05:00
sudo apt-get install zsh -y
elif command_exists "yum"; then
2023-09-06 15:18:40 -05:00
sudo apt-get install zsh -y
elif command_exists "pacman"; then
2023-09-06 15:18:40 -05:00
sudo pacman -S zsh --noconfirm --needed
elif command_exists "zypper"; then
2023-09-06 15:18:40 -05:00
sudo zypper install zsh -y
elif command_exists "emerge"; then
2023-09-06 15:18:40 -05:00
sudo emerge app-shells/zsh
sudo emerge app-shells/zsh-completions
sudo emerge app-shells/gentoo-zsh-completions
elif command_exists "apk"; then
2023-09-06 15:18:40 -05:00
sudo apk add zsh -y
else
echo >&2 "Unsupported: unknown package manager and distro"
exit 1
fi
2023-08-20 21:35:16 -05:00
2023-08-30 22:15:13 -05:00
cp -r zsh-files/.* ~/