mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
15 lines
318 B
Bash
Executable File
15 lines
318 B
Bash
Executable File
#!/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
|