From 6e7c85a844b1e38dc6c2af476d2fd4e850c04bfd Mon Sep 17 00:00:00 2001
From: Amin Bandali <bandali@gnu.org>
Date: Sun, 14 Apr 2019 00:52:31 -0400
Subject: [PATCH 1/1] bash: fish-like prompt

---
 .bashrc | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

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)> "
-- 
2.20.1