From 3c29da2d0a77785d8602055394371da471506a7e Mon Sep 17 00:00:00 2001 From: Mira Velturu Date: Wed, 28 Jun 2023 11:40:36 -0400 Subject: [PATCH] fix fastfetch check, undelay zoxide --- executable_dot_zshrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/executable_dot_zshrc b/executable_dot_zshrc index cd7dbd7..fe243e9 100644 --- a/executable_dot_zshrc +++ b/executable_dot_zshrc @@ -132,7 +132,8 @@ fi # set up zoxide if installed (lets you jump through folders easily using the z and zi commands instead of cd) if checkCommand zoxide; then - zsh-defer _evalcache zoxide init zsh + # zsh-defer + _evalcache zoxide init zsh fi #if "$(checkCommand notify-send)"; then @@ -145,7 +146,7 @@ fi # Set aliases [ -f "$HOME/.aliasrc" ] && source "$HOME/.aliasrc" # >/dev/null 2>&1 &; -if checkCommand hyfetch; then +if checkCommand hyfetch && checkCommand fastfetch; then hyfetch -b fastfetch fi END="$(date '+%s.%N')"