aboutsummaryrefslogtreecommitdiff
path: root/ksh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-06-19 00:28:06 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-06-19 00:28:06 +1200
commite71182ce0b1076f52799534bfed023c75e03e412 (patch)
treec842de230dc46666fcb6d5b802f2825efc4f79cd /ksh
parentUpdate check/lint sh (diff)
downloaddotfiles-e71182ce0b1076f52799534bfed023c75e03e412.tar.gz
dotfiles-e71182ce0b1076f52799534bfed023c75e03e412.zip
Remove user@ prefix from prompt
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 1aa05ae3..866cf79e 100644
--- a/ksh/kshrc.d/prompt.ksh
+++ b/ksh/kshrc.d/prompt.ksh
@@ -15,7 +15,7 @@ function prompt {
# Basic prompt shape depends on whether we're in SSH or not
PS1=
if [[ -n $SSH_CLIENT ]] || [[ -n $SSH_CONNECTION ]] ; then
- PS1=$PS1'$USER@${HOSTNAME%%.*}:'
+ PS1=$PS1'${HOSTNAME%%.*}:'
fi
# Add sub-commands; working directory with ~ abbreviation, VCS, job
@@ -193,7 +193,7 @@ function prompt {
PS3='? '
PS4='+ '
if [[ -n $SSH_CLIENT || -n $SSH_CONNECTION ]] ; then
- PS1=$(id -nu)'@'$(hostname -s)'$ '
+ PS1=$(hostname -s)'$ '
fi
;;