mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-01 04:30:37 +02:00
16 lines
485 B
Bash
16 lines
485 B
Bash
###################################################################
|
|
# Show current schroot
|
|
#
|
|
# Author:
|
|
# https://github.com/fshp
|
|
#
|
|
# You need modify theme
|
|
# The theme can be obtained here:
|
|
# https://github.com/fshp/schroot.zsh-theme
|
|
###################################################################
|
|
|
|
function schroot_prompt_info() {
|
|
if [ -n "$SCHROOT_CHROOT_NAME" ]; then
|
|
echo "${ZSH_THEME_SCHROOT_PROMPT_PREFIX}${SCHROOT_CHROOT_NAME}${ZSH_THEME_SCHROOT_PROMPT_SUFFIX}"
|
|
fi
|
|
}
|