aboutsummaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-01-27 13:03:09 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-01-27 13:03:56 +1300
commit8cc85ff3ffe5ebd1260ed276fc2b35621ccfba55 (patch)
treeb156c22a29e861b3fb5809365d10e1cfc1b8da26 /zsh
parentUpdate submodules (diff)
downloaddotfiles-8cc85ff3ffe5ebd1260ed276fc2b35621ccfba55.tar.gz
dotfiles-8cc85ff3ffe5ebd1260ed276fc2b35621ccfba55.zip
Extend "fallback" prompt a bit
Include username/hostname if no SSH variables
Diffstat (limited to 'zsh')
-rw-r--r--zsh/zshrc.d/prompt.zsh5
1 files changed, 4 insertions, 1 deletions
diff --git a/zsh/zshrc.d/prompt.zsh b/zsh/zshrc.d/prompt.zsh
index f374dbec..446e336e 100644
--- a/zsh/zshrc.d/prompt.zsh
+++ b/zsh/zshrc.d/prompt.zsh
@@ -44,10 +44,13 @@ prompt() {
# Revert to simple inexpensive prompts
off)
- PS1='\$ '
+ PS1='$ '
PS2='> '
PS3='? '
PS4='+ '
+ if [[ -n $SSH_CLIENT || -n $SSH_CONNECTION ]] ; then
+ PS1=$(id -nu)'@'$(hostname -s)'$ '
+ fi
;;
# Git prompt function