minus-squarenfultz@lemmy.mltoLinux@lemmy.ml•Custom shell prompt tips and tricks?linkfedilinkarrow-up4·1 year agoCheck for the ssh env vars. For example, I use PS1="${SSH_CONNECTION:+\u@\h:}\W\$" to hide the hostname when not on SSH, you could do something similar with the control codes for color. linkfedilink
Check for the ssh env vars. For example, I use
PS1="${SSH_CONNECTION:+\u@\h:}\W\$"
to hide the hostname when not on SSH, you could do something similar with the control codes for color.