fix fastfetch check, undelay zoxide

This commit is contained in:
Mira Velturu 2023-06-28 11:40:36 -04:00
parent 23a3755402
commit 3c29da2d0a

View file

@ -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) # set up zoxide if installed (lets you jump through folders easily using the z and zi commands instead of cd)
if checkCommand zoxide; then if checkCommand zoxide; then
zsh-defer _evalcache zoxide init zsh # zsh-defer
_evalcache zoxide init zsh
fi fi
#if "$(checkCommand notify-send)"; then #if "$(checkCommand notify-send)"; then
@ -145,7 +146,7 @@ fi
# Set aliases # Set aliases
[ -f "$HOME/.aliasrc" ] && source "$HOME/.aliasrc" # >/dev/null 2>&1 &; [ -f "$HOME/.aliasrc" ] && source "$HOME/.aliasrc" # >/dev/null 2>&1 &;
if checkCommand hyfetch; then if checkCommand hyfetch && checkCommand fastfetch; then
hyfetch -b fastfetch hyfetch -b fastfetch
fi fi
END="$(date '+%s.%N')" END="$(date '+%s.%N')"