From f949c5c453029bbe0dc961924a1df4e8d699e70c Mon Sep 17 00:00:00 2001 From: Andrey Astafyev Date: Mon, 18 May 2020 11:01:52 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D1=80=D0=B8=D0=B3=D0=BB=D0=B0=D1=88?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B4=D0=BB=D1=8F=20=D0=AD=D0=BB?= =?UTF-8?q?=D1=8C=D0=B1=D1=80=D1=83=D1=81-=D0=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- prompt.zsh | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) 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