diff options
author | June McEnroe <june@causal.agency> | 2019-01-13 14:46:01 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-01-13 14:46:01 -0500 |
commit | 68fddefce950227a1d59e148526425d610700bf2 (patch) | |
tree | 56b5ba90e0a95f21c63bb8519aaba2ff886dc193 | |
parent | Set PSlit like NetBSD sh (diff) | |
download | src-68fddefce950227a1d59e148526425d610700bf2.tar.gz src-68fddefce950227a1d59e148526425d610700bf2.zip |
Use colours in cash prompts
Diffstat (limited to '')
-rw-r--r-- | home/.config/cash/cashrc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/home/.config/cash/cashrc b/home/.config/cash/cashrc index cefa0321..573d7c2d 100644 --- a/home/.config/cash/cashrc +++ b/home/.config/cash/cashrc @@ -33,4 +33,9 @@ alias gr='git rebase' gra='gr --abort' grc='gr --continue' grs='gr --skip' alias rand='openssl rand -base64 33' alias private='eval "$(gpg -d ~/.private)"' -RPS1='\W' +af7=$(tput setaf 7 || tput AF 7) +sgr0=$(tput sgr0 || tput me) + +PSlit=$'\1' +PS1="${PSlit}${af7}${PSlit}\$${PSlit}${sgr0}${PSlit} " +RPS1="${PSlit}${af7}${PSlit}\\W${PSlit}${sgr0}${PSlit}" |