diff options
author | June McEnroe <june@causal.agency> | 2022-05-29 22:20:51 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-05-29 22:20:51 -0400 |
commit | 282a40a8ecedc78b87dc74672fde9e0f50d36ba7 (patch) | |
tree | d7c249cd3fc38027c9df896f242d0436b51b42e9 /home | |
parent | Add mins script (diff) | |
download | src-282a40a8ecedc78b87dc74672fde9e0f50d36ba7.tar.gz src-282a40a8ecedc78b87dc74672fde9e0f50d36ba7.zip |
Set prompt for oksh
I am trying out actually using oksh full time. Surviving with no right prompt.
Diffstat (limited to 'home')
-rw-r--r-- | home/.shrc | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/home/.shrc b/home/.shrc index 1d7542a3..afa87fe5 100644 --- a/home/.shrc +++ b/home/.shrc @@ -25,7 +25,7 @@ man() { for sect in $MANSECT; do command man -w $sect "$1" >/dev/null 2>&1 && exec man $sect "$1" done - exec man "$1") + exec command man "$1") } cd() { @@ -50,15 +50,5 @@ fi export LESS_TERMCAP_us=$(tput sitm) export LESS_TERMCAP_ue=$(tput ritm) -hostname=$(hostname -s) -rprompt() { - local pwd - pwd=${PWD#${HOME}} - [ "${pwd}" != "${PWD}" ] && pwd="~${pwd}" - [ "${TERM%-*}" = 'xterm' ] \ - && printf '\33]0;%s\a' "${SSH_CLIENT:+${hostname}:}${pwd##*/}" >&2 - printf '%s' "${SSH_CLIENT:+${hostname}:}${pwd}" -} -PS1=' -$ ' -RPS1='${?#0} $(rprompt)' +PS1='\[\033]0;${SSH_CLIENT:+\\h:}\W\a\] +${?#0}$ ' |