aboutsummaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
Diffstat (limited to 'zsh')
-rw-r--r--zsh/zshrc.d/prompt.zsh4
1 files changed, 2 insertions, 2 deletions
diff --git a/zsh/zshrc.d/prompt.zsh b/zsh/zshrc.d/prompt.zsh
index 6ff82cec..7c695e25 100644
--- a/zsh/zshrc.d/prompt.zsh
+++ b/zsh/zshrc.d/prompt.zsh
@@ -11,7 +11,7 @@ prompt() {
# Basic prompt shape depends on whether we're in SSH or not
PS1=
if [[ -n $SSH_CLIENT ]] || [[ -n $SSH_CONNECTION ]] ; then
- PS1=$PS1'%n@%m:'
+ PS1=$PS1'%m:'
fi
PS1=$PS1'%~'
@@ -49,7 +49,7 @@ prompt() {
PS3='? '
PS4='+ '
if [[ -n $SSH_CLIENT || -n $SSH_CONNECTION ]] ; then
- PS1=$(id -nu)'@'$(hostname -s)'$ '
+ PS1=$(hostname -s)'$ '
fi
;;