You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
428 B
Bash
18 lines
428 B
Bash
#!/bin/bash
|
|
|
|
OMZDIR="$HOME/.oh-my-zsh"
|
|
if [ ! -d "$OMZDIR" ]; then
|
|
echo "Installing oh-my-zsh"
|
|
/bin/sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
|
|
else
|
|
echo "Consider updating oh-my-zsh using: omz update"
|
|
fi
|
|
shl=$(ps -hp $$|awk '{echo $5}')
|
|
if [ ! $shl = "/bin/zsh" ]; then
|
|
echo "Changing default shell to zsh"
|
|
chsh -s /bin/zsh
|
|
else
|
|
echo "zsh already enabled"
|
|
fi
|
|
|