From: Ruben Beltran del Rio Date: Sun, 14 Jan 2024 15:19:14 +0000 (+0000) Subject: Update for dnf support X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/commitdiff_plain/bb290191df028ee5cd02abbce6d1a786e454c7b7?ds=inline Update for dnf support --- diff --git a/.gitmodules b/.gitmodules index 30b6eeb..4a8e029 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "zsh/modules/vendor/zsh-syntax-highlighting"] path = zsh/modules/vendor/zsh-syntax-highlighting - url = git@github.com:zsh-users/zsh-syntax-highlighting.git + url = https://github.com/zsh-users/zsh-syntax-highlighting.git 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