From: Amin Bandali Date: Sun, 14 Apr 2019 04:52:31 +0000 (-0400) Subject: bash: fish-like prompt X-Git-Url: https://git.shemshak.org/~bandali/configs/commitdiff_plain/6e7c85a844b1e38dc6c2af476d2fd4e850c04bfd bash: fish-like prompt --- diff --git a/.bashrc b/.bashrc index 04cacb6..a2763dc 100644 --- a/.bashrc +++ b/.bashrc @@ -3,7 +3,6 @@ # aliases alias ls='ls --color=auto' -PS1='[\u@\h \W]\$ ' alias mpv="mpv --ytdl-format mp4" alias mv="mv -iv" alias cp="cp -iv" @@ -22,3 +21,8 @@ aur() { # echo -e "\033[5 q" # blinking echo -e "\033[6 q" # non-blinking +a_prompt() { + cwd=$(pwd | sed -e "s!$HOME!~!" | sed -re "s!([^/])[^/]+/!\1/!g") + printf $cwd +} +PS1="\u@\h \$(a_prompt)> "