blob: 2bc256267a2f09c0d88b311e8143abcb639130d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# 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_magenta_setup () {
PS1="%{$fg_magenta$bg_magenta$bold_color%}$char_333$char_262$char_261$char_260%{$fg_white$bg_magenta$bold_color%}%n@%m%{$reset_color$fg_magenta$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_magenta$bg_grey$bold_color%}%~/%{$reset_color%} "
PS2="%{$fg_magenta$bg_grey%}$char_333$char_262$char_261$char_260%{$reset_color%}>"
precmd () { }
preexec () { }
}
prompt_magenta_setup "$@"
|