diff options
author | Ryan Kavanagh <rak@rak.ac> | 2022-07-06 21:42:29 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2022-07-06 21:42:29 -0400 |
commit | 8f84ec7981905b02dfbb49471ccce3c67644b5f2 (patch) | |
tree | 8c05561cdd9ac095f22712f6d9dbab867f7bd7d3 | |
parent | template ssh authorized keys to allow juicessh by host (diff) |
Prefer per-uname gitstatusd if it exists; do not complain about missing otherwise
-rw-r--r-- | dot_zshrc.tmpl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dot_zshrc.tmpl b/dot_zshrc.tmpl index 440d86f..5169add 100644 --- a/dot_zshrc.tmpl +++ b/dot_zshrc.tmpl @@ -112,6 +112,8 @@ for f in $HOME/.zsh/p10k.zsh $HOME/.zsh/powerlevel10k/powerlevel10k.zsh-theme; d done if [[ -f $HOME/.zsh/powerlevel10k/gitstatus/gitstatusd-$(uname) ]]; then GITSTATUS_DAEMON=$HOME/.zsh/powerlevel10k/gitstatus/gitstatusd-$(uname); +elif [[ ! -f $HOME/.zsh/powerlevel10k/gitstatus/gitstatusd ]]; then + POWERLEVEL9K_DISABLE_GITSTATUS=true fi # Alias/custom commands |