From bb290191df028ee5cd02abbce6d1a786e454c7b7 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 14 Jan 2024 15:19:14 +0000 Subject: Update for dnf support --- runcoms/zshrc | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'runcoms/zshrc') diff --git a/runcoms/zshrc b/runcoms/zshrc index 8df1b05..3b61e08 100644 --- a/runcoms/zshrc +++ b/runcoms/zshrc @@ -82,10 +82,14 @@ fi if [[ -s "/opt/homebrew/bin/brew" ]]; then . /opt/homebrew/etc/profile.d/z.sh else - if [[ -s "/usr/share/z/z.sh" ]]; then - . /usr/share/z/z.sh + if [[ -s "/usr/libexec/z.sh" ]]; then + . /usr/libexec/z.sh else - . /usr/local/etc/profile.d/z.sh + if [[ -s "/usr/share/z/z.sh" ]]; then + . /usr/share/z/z.sh + else + . /usr/local/etc/profile.d/z.sh + fi fi fi -- cgit