diff --git a/.zshrc b/.zshrc index d846cc3..4c0a012 100644 --- a/.zshrc +++ b/.zshrc @@ -130,4 +130,9 @@ export PATH="$PATH:$HOME/.cargo/bin" #StarShip prompt eval "$(starship init zsh)" -neofetch +# Run fastfetch if it exist, otherwise neofetch +if type fastfetch >/dev/null 2>&1; then + fastfetch +else + neofetch +fi