1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-28 15:01:21 +02:00

Initial revision

This commit is contained in:
Tanaka Akira 1999-10-19 19:57:39 +00:00
parent 2285f015f4
commit b3791f90db

@ -0,0 +1,35 @@
# oliver prompt theme
prompt_oliver_help() {
cat - <<ENDHELP
With this prompt theme, the prompt contains the current directory,
history number and the previous command\'s exit code (if non-zero)
and a final character which depends on priviledges.
The colour of the prompt depends on two associative arrays -
\$pcolour and $\tcolour. Each array is indexed by the name of the
local host. Alternatively, the colour can be set with parameters
to prompt.
The hostname and username are also included unless they are in the
\$normal_hosts or \$normal_users array.
ENDHELP
}
prompt_oliver_setup() {
prompt_opts=( percent set )
local pcol=$'\e['${1:-${pcolour[${HOST:=`hostname`}]:-33}}m
local tcol=$'\e['${2:-${tcolour[$HOST]:-37}}m
local a host="%M:" user="%n "
for a in $normal_hosts; do
[[ $HOST == $a ]] && host=""
done
for a in root $normal_users; do
[[ ${USER:-`whoami`} == $a ]] && user=""
done
PS1="%{$pcol%}$user$host%~ [%h%0(?..:%?)]%# %{$tcol%}"
}
prompt_oliver_setup "$@"