mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 21:44:11 +01:00
19 lines
758 B
Plaintext
19 lines
758 B
Plaintext
|
# Converted to zsh prompt theme by bash2zshprompt, written by <adam@spiers.net>
|
||
|
|
||
|
for code in 333 262 261 260 333 262 261 260 333 262 261 260; do
|
||
|
local varname=char_$code
|
||
|
: ${(P)varname=$(echo -n "\\0$code")}
|
||
|
done
|
||
|
|
||
|
# Created by Jim Foltz <aa204@acorn.net>
|
||
|
# Changed by Spidey 08/06
|
||
|
prompt_cyan_setup () {
|
||
|
PS1="%{$fg_cyan$bg_cyan$bold_color%}$char_333$char_262$char_261$char_260%{$fg_white$bg_cyan$bold_color%}%n@%m%{$reset_color$fg_cyan$bg_grey%}$char_333$char_262$char_261$char_260%{$fg_white$bg_grey$bold_color%} %D{%a %b %d} %D{%I:%M:%S%P} $prompt_newline%{$fg_cyan$bg_grey$bold_color%}%~/%{$reset_color%} "
|
||
|
PS2="%{$fg_cyan$bg_grey%}$char_333$char_262$char_261$char_260%{$reset_color%}>"
|
||
|
|
||
|
precmd () { }
|
||
|
preexec () { }
|
||
|
}
|
||
|
|
||
|
prompt_cyan_setup "$@"
|