7 lines
118 B
Bash
7 lines
118 B
Bash
# /etc/zsh
|
|
|
|
# Setting zsh prompt if not in chroot
|
|
if ! [ -f /tmp/is_chroot ]; then
|
|
export PROMPT="[%n@%m %1~]$ "
|
|
fi
|