From c1872248d369fdfb61c323a676c1706735b3d980 Mon Sep 17 00:00:00 2001 From: James Bunton Date: Tue, 11 Dec 2018 07:50:00 +1100 Subject: [PATCH] bash: Fix PROMPT_COMMAND --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 94beebe..e8502b2 100644 --- a/.bashrc +++ b/.bashrc @@ -71,7 +71,7 @@ export HISTTIMEFORMAT='%F %T ' stty -ixon # hostname:workingdir -PROMPT_COMMAND='echo -ne "\\033]0;$(hostname|cut -d. -f1):${PWD/$HOME/~}\\007"' +PROMPT_COMMAND='echo -ne "\\033]0;$(hostname|cut -d. -f1):${PWD/$HOME/\~}\\007"' # Use dark background colors in apps like vim export COLORFGBG='15;0' -- 2.39.2