From 0db196a41cf600553a6bc128db285cb5991b5f53 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 20 Aug 2023 18:50:17 +0200 Subject: [PATCH] =?UTF-8?q?=E2=88=92real?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bash/bash/prompt.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bash/bash/prompt.sh b/bash/bash/prompt.sh index 70e8454..9e02873 100644 --- a/bash/bash/prompt.sh +++ b/bash/bash/prompt.sh @@ -7,7 +7,6 @@ local date="$(date +%H:%M:%S)" local git local host="$(hostname)" local path="${PWD}" -local real="$(realpath "${path}")" local user="${USER}" local view="\ └ ${date}\ @@ -21,10 +20,6 @@ local view="\ view="${view} –\e[0;35m${git}\e[0m" fi fi - if [ "${path}" != "${real}" ] ; then - view="${view} -\e[0;36m${real}\e[0m" - fi view="${view} ┌ \e[0;36m${path}\e[0m ${PS2}"