From c3ed78ecb965cce75b007b45a2b37d87bb1d184a Mon Sep 17 00:00:00 2001 From: frosty Date: Sun, 25 Aug 2024 03:21:06 -0400 Subject: [PATCH] bash: update with iceline --- .bashrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 2ad96b4..2b62dde 100644 --- a/.bashrc +++ b/.bashrc @@ -47,4 +47,7 @@ alias gd='git diff' alias gp='git push' alias gl='git pull' -[ -d "$XDG_DATA_HOME/bash/iceline" ] && . "$XDG_DATA_HOME/bash/iceline/iceline.sh" +if [ -d "$XDG_DATA_HOME/bash/iceline" ]; then + . "$XDG_DATA_HOME/bash/iceline/iceline.sh" + PROMPT_COMMAND='_prompt_command' +fi