aboutsummaryrefslogtreecommitdiff
path: root/ksh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2022-08-09 19:26:12 +1200
committerTom Ryder <tom@sanctum.geek.nz>2022-08-09 19:26:12 +1200
commit79f1da9ffb26d24ae752491076df600c40b124ed (patch)
tree69cd6fce571d1df386bf98ec2c9862db17338e8d /ksh
parentRestore tmux history to defaults (diff)
downloaddotfiles-79f1da9ffb26d24ae752491076df600c40b124ed.tar.gz
dotfiles-79f1da9ffb26d24ae752491076df600c40b124ed.zip
Better way to elide hostname prompt in screen/tmux
Diffstat (limited to 'ksh')
-rw-r--r--ksh/kshrc.d/prompt.ksh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ksh/kshrc.d/prompt.ksh b/ksh/kshrc.d/prompt.ksh
index b0023670..99d999de 100644
--- a/ksh/kshrc.d/prompt.ksh
+++ b/ksh/kshrc.d/prompt.ksh
@@ -12,9 +12,9 @@ function prompt {
# Turn complex, colored PS1 and debugging PS4 prompts on
on)
- # Basic prompt shape depends on whether we're in SSH or not
+ # Prompt has hostname via SSH outside of screen/tmux
PS1=
- if [[ -n $SSH_CLIENT || -n $SSH_CONNECTION ]] ; then
+ if [[ -n $SSH_CLIENT && -z $STY && -z $TMUX ]] ; then
PS1=$PS1'${HOSTNAME%%.*}:'
fi