blob: 754bf60be9d9c399d6102e38d1ca84034578a994 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Created by icetrey <trey@imagin.net>
# Added by Spidey 08/06
# Converted to zsh prompt theme by <adam@spiers.net>
prompt_elite2_help () {
cat <<EOH
This prompt is color-scheme-able. You can invoke it thus:
prompt elite2 [<text-color> [<parentheses-color>]]
The default colors are both cyan. This theme works best with a dark
background.
Recommended fonts for this theme: either UTF-8, or nexus or vga or similar.
If you don't have any of these, the 8-bit characters will probably look
stupid.
EOH
}
prompt_elite2_setup () {
local text_col=${1:-'cyan'}
local parens_col=${2:-$text_col}
local -A schars
autoload -Uz prompt_special_chars
prompt_special_chars
local text="%b%F{$text_col}"
local parens="%B%F{$parens_col}"
local punct="%B%F{black}"
local reset="%b%f"
local lpar="$parens($text"
local rpar="$parens)$text"
PS1="$punct$schars[332]$text$schars[304]$lpar%n$punct@$text%m$rpar$schars[304]$lpar%!$punct/$text%y$rpar$schars[304]$lpar%D{%I:%M%P}$punct:$text%D{%m/%d/%y}$rpar$schars[304]$punct-$reset$prompt_newline$punct$schars[300]$text$schars[304]$lpar%#$punct:$text%~$rpar$schars[304]$punct-$reset "
PS2="$parens$schars[304]$text$schars[304]$punct-$reset "
prompt_opts=(cr subst percent)
}
prompt_elite2_preview () {
local color colors
colors=(red yellow green blue magenta)
if (( ! $#* )); then
for (( i = 1; i <= $#colors; i++ )); do
color=$colors[$i]
prompt_preview_theme elite2 $color
(( i < $#colors )) && print
done
else
prompt_preview_theme elite2 "$@"
fi
}
prompt_elite2_setup "$@"
|