diff --git a/prompt.zsh b/prompt.zsh index f985012..f5b3a63 100644 --- a/prompt.zsh +++ b/prompt.zsh @@ -27,8 +27,14 @@ if [[ "$TERM_PROGRAM" == "Hyper" ]]; then SPACESHIP_GIT_BRANCH_SHOW=false fi -if [ "x$(lsb_release -d -s)" = "xAstra Linux SE 1.5 (Smolensk)" ]; then - antibody bundle nojhan/liquidprompt -else - antibody bundle denysdovhan/spaceship-prompt -fi +case "x$(lsb_release -d -s)" in + "xAstra Linux SE 1.5 (Smolensk)" ) + antibody bundle nojhan/liquidprompt + ;; + "xDebian GNU/Linux 8.11 (jessie)" ) + antibody bundle nojhan/liquidprompt + ;; + * ) + antibody bundle denysdovhan/spaceship-prompt + ;; +esac