1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-04-12 08:01:11 +00:00
2020-11-15 09:47:29 -05:00

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