summary refs log tree commit diff
path: root/home/.config/1sh/env.sh
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-06-29 17:58:22 -0400
committerJune McEnroe <june@causal.agency>2019-06-29 17:58:22 -0400
commitd06f768645f9e8c54443a87389ff0dde21277fa1 (patch)
tree876ddc15a000d0b2c511ea04ca02e1351b07ee5c /home/.config/1sh/env.sh
parentAdd Parable of the Talents (diff)
downloadsrc-d06f768645f9e8c54443a87389ff0dde21277fa1.tar.gz
src-d06f768645f9e8c54443a87389ff0dde21277fa1.zip
Clean up 1sh prompt setting
Diffstat (limited to 'home/.config/1sh/env.sh')
-rw-r--r--home/.config/1sh/env.sh12
1 files changed, 9 insertions, 3 deletions
diff --git a/home/.config/1sh/env.sh b/home/.config/1sh/env.sh
index 0c645e64..7b87c9d3 100644
--- a/home/.config/1sh/env.sh
+++ b/home/.config/1sh/env.sh
@@ -37,11 +37,17 @@ if [ "$(uname)" = 'Linux' ]; then
 	alias ls='ls --color=auto' grep='grep --color'
 fi
 
+PS0=$'\n'
+PS1='\$ '
+RPS1="${SSH_CLIENT:+\h:}\w"
+
 af0=$(tput setaf 0 || tput AF 0)
 af7=$(tput setaf 7 || tput AF 7)
 sgr0=$(tput sgr0 || tput me)
+tsl=$'\e]0;'
+fsl=$'\a'
 
 PSlit=$'\1'
-[ "${TERM%-*}" = 'xterm' ] && PS0=$'\e]0;\\W\a\n' || PS0=$'\n'
-PS1="${PSlit}${af7}${PSlit}\\\$${PSlit}${sgr0}${PSlit} "
-RPS1="${PSlit}${af0}${PSlit}# ${PSlit}${af7}${PSlit}\\w${PSlit}${sgr0}${PSlit}"
+PS1="${PSlit}${af7}${PSlit}${PS1% }${PSlit}${sgr0}${PSlit} "
+RPS1="${PSlit}${af0}${PSlit}# ${PSlit}${af7}${PSlit}${RPS1}${PSlit}${sgr0}${PSlit}"
+[ "${TERM%-*}" = 'xterm' ] && PS0="${tsl}${SSH_CLIENT:+\h:}\W${fsl}${PS0}"