From 73f8b71d24261d6ea840d010e0927cec4a437905 Mon Sep 17 00:00:00 2001 From: desktop Date: Mon, 27 Nov 2023 22:52:55 +0300 Subject: [PATCH] ps1 : disable full path. --- .config/bash/module/ps1.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/bash/module/ps1.sh b/.config/bash/module/ps1.sh index 17f3cb2..91142f5 100644 --- a/.config/bash/module/ps1.sh +++ b/.config/bash/module/ps1.sh @@ -40,8 +40,8 @@ __prompt_command() # add user, host and working dir PS1+="\u@\h " PS1+="\[${color_blue}\]" - # PS1+="\w" - PS1+="\${PWD}" + PS1+="\w" + # PS1+="\${PWD}" # Add git branch if available. local git_branch="$(_git_current_branch)"