2023-08-23 21:25:12 -05:00
|
|
|
#!/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
|
|
|
|
2023-08-23 21:25:12 -05:00
|
|
|
if [ $(whoami) != "root" ]; then
|
2023-08-31 10:28:37 -05:00
|
|
|
SUDO="sudo"
|
2023-08-30 22:15:13 -05:00
|
|
|
else
|
|
|
|
echo "Run as a normal user, not root"
|
2023-08-23 21:25:12 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
2023-08-30 22:15:13 -05:00
|
|
|
|
2023-08-28 18:01:19 -05:00
|
|
|
command_exists() { type "$1" &>/dev/null; }
|
2023-08-20 21:35:16 -05:00
|
|
|
|
2023-08-23 21:25:12 -05:00
|
|
|
if command_exists "apt-get"; then
|
|
|
|
$SUDO apt-get install zsh -y
|
|
|
|
elif command_exists "yum"; then
|
|
|
|
$SUDO apt-get install zsh -y
|
|
|
|
elif command_exists "pacman"; then
|
|
|
|
$SUDO pacman -S zsh --noconfirm --needed
|
|
|
|
elif command_exists "zypper"; then
|
|
|
|
$SUDO zypper install zsh -y
|
|
|
|
elif command_exists "emerge"; then
|
|
|
|
$SUDO emerge --ask app-shells/zsh
|
|
|
|
$SUDO emerge --ask app-shells/zsh-completions
|
|
|
|
$SUDO emerge --ask app-shells/gentoo-zsh-completions
|
|
|
|
elif command_exists "apk"; then
|
2023-08-28 18:01:19 -05:00
|
|
|
$SUDO apk add zsh -y
|
2023-08-23 21:25:12 -05:00
|
|
|
else
|
2023-08-28 18:01:19 -05:00
|
|
|
echo >&2 "Unsupported: unknown package manager"
|
2023-08-23 21:25:12 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
2023-08-20 21:35:16 -05:00
|
|
|
|
2023-08-30 22:15:13 -05:00
|
|
|
cp -r zsh-files/.* ~/
|