From a1045921471459147bbc74e10e3a7836b8f39e08 Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Sat, 16 Apr 2022 15:17:11 +0200 Subject: guix-config: Remove $PWD from bash prompt. * .bashrc (PS1): Remove "\w" from prompt to clear clutter from the command line. --- .bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.bashrc b/.bashrc index 10589f4..573e49e 100644 --- a/.bashrc +++ b/.bashrc @@ -22,9 +22,9 @@ source /etc/bashrc # Adjust the prompt depending on whether we're in 'guix environment'. if [ -n "$GUIX_ENVIRONMENT" ] then - PS1='\u@\h \w [env]\$ ' + PS1='\u@\h [env]\$ ' else - PS1='\u@\h \w\$ ' + PS1='\u@\h \$ ' fi alias ls='ls -p --color=auto' alias ll='ls -l' -- cgit v1.2.3