Files
dotfiles/setup.d/10-starship.sh
2021-03-23 16:26:57 -07:00

10 lines
221 B
Bash
Executable File

#!/bin/bash
if ! test -x /usr/local/bin/starship; then
curl -fsSL https://starship.rs/install.sh | bash
fi
if ! grep starship ~/.bashrc > /dev/null; then
echo "eval \"\$(starship init bash)\"" >> ~/.bashrc
fi