mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
15 lines
318 B
Plaintext
15 lines
318 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
install_ohmyzsh() {
|
||
|
if [ ! -d ~/.oh-my-zsh ]
|
||
|
then
|
||
|
printf "\ninstalling oh my zsh...\nremember to restart terminal afterwards\n\n"
|
||
|
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
||
|
echo ""
|
||
|
fi
|
||
|
|
||
|
echo "installed ✓"
|
||
|
}
|
||
|
|
||
|
install_ohmyzsh
|