blob: 7948254d8b7528071d929154a4c5455bc86029be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
prompt_walters_help () {
cat <<'EOF'
This prompt is color-scheme-able. You can invoke it thus:
prompt walters [<color1>]
where the color is for the right-hand prompt.
This prompt was stolen from Colin Walters <walters@debian.org>,
who gives credit to Michel Daenzer <daenzer@debian.org>.
EOF
}
prompt_walters_setup () {
if [[ "$TERM" != "dumb" ]]; then
PROMPT='%B%(?..[%?] )%b%n@%U%m%u> '
RPROMPT="%F{${1:-green}}%~%f"
else
PROMPT="%(?..[%?] )%n@%m:%~> "
fi
prompt_opts=(cr percent)
}
prompt_walters_setup "$@"
|