depot/hosts/soda/shell-profile/soda-prompt.sh
2022-05-28 21:54:12 +02:00

8 lines
106 B
Bash

if [ -n "${BASH_VERSION-}" ]; then
if test $(id -u) -eq 0; then
PS1='\h # '
else
PS1='\h % '
fi
fi