dotfiles/.dotfiles/bootstrap/85_oh_my_zsh.sh
2024-01-25 09:47:54 +01:00

7 lines
234 B
Bash

#!/bin/bash
# Install oh-my-zsh if the folder does not exist
if [ ! -d "$HOME/.oh-my-zsh" ]; then
echo "Installing oh-my-zsh"
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
fi