From 99b86d511c5d2bebdc1494123e8262214737d468 Mon Sep 17 00:00:00 2001 From: Mira Date: Sun, 21 Dec 2025 10:18:03 -0500 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')"