diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-11-18 15:52:19 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-11-18 15:52:19 +0000 |
commit | d349d2f1cd18c49fbda8d419e262520db5c5e912 (patch) | |
tree | c835780ad3cac3333e78c661148b2c0dd06c780a /Functions/Prompts | |
parent | 273644abe162d1a7a3e98c392403162a00224628 (diff) | |
download | zsh-d349d2f1cd18c49fbda8d419e262520db5c5e912.tar.gz zsh-d349d2f1cd18c49fbda8d419e262520db5c5e912.tar.xz zsh-d349d2f1cd18c49fbda8d419e262520db5c5e912.zip |
zsh-workers:8668
Diffstat (limited to 'Functions/Prompts')
-rw-r--r-- | Functions/Prompts/prompt_blue_setup | 23 | ||||
-rw-r--r-- | Functions/Prompts/prompt_combo_setup | 18 | ||||
-rw-r--r-- | Functions/Prompts/prompt_cyan_setup | 18 | ||||
-rw-r--r-- | Functions/Prompts/prompt_green_setup | 18 | ||||
-rw-r--r-- | Functions/Prompts/prompt_magenta_setup | 18 | ||||
-rw-r--r-- | Functions/Prompts/prompt_red_setup | 18 | ||||
-rw-r--r-- | Functions/Prompts/prompt_white_setup | 18 | ||||
-rw-r--r-- | Functions/Prompts/prompt_yellow_setup | 18 |
8 files changed, 0 insertions, 149 deletions
diff --git a/Functions/Prompts/prompt_blue_setup b/Functions/Prompts/prompt_blue_setup deleted file mode 100644 index 14c12b0fe..000000000 --- a/Functions/Prompts/prompt_blue_setup +++ /dev/null @@ -1,23 +0,0 @@ -# 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 - -# Blue -# Created by BadlandZ in v.0.4b -# Adapted by jf -# Changed By Spidey 08/06 Adding Ending brackets %} -# -prompt_blue_setup () { - PS1="%{$fg_blue$bg_blue$bold_color%}$char_333$char_262$char_261$char_260%{$fg_white$bg_blue$bold_color%}%n@%m%{$reset_color%}\ - %{$fg_blue$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_blue$bg_grey$bold_color%}%~/%{$reset_color%} " - PS2="%{$fg_blue$bg_grey%}$char_333$char_262$char_261$char_260%{$reset_color%}>" - - precmd () { } - preexec () { } -} - -prompt_blue_setup "$@" diff --git a/Functions/Prompts/prompt_combo_setup b/Functions/Prompts/prompt_combo_setup deleted file mode 100644 index a9a44ba1f..000000000 --- a/Functions/Prompts/prompt_combo_setup +++ /dev/null @@ -1,18 +0,0 @@ -# Converted to zsh prompt theme by bash2zshprompt, written by <adam@spiers.net> - -for code in 333 262 261 260 260 261 262 333 333 262 261 260 333 262 261 260 260 261 262 333 333 262 261 260; do - local varname=char_$code - : ${(P)varname=$(echo -n "\\0$code")} -done - -# Created by James Manning <jmm@raleigh.ibm.com> -# Changed by Spidey 08/06 -prompt_combo_setup () { - PS1="%{$bold_color$fg_blue$bold_color%}$char_333$char_262$char_261$char_260%{$bold_color$fg_white$bg_blue%}%n@%m%{$reset_color$fg_blue$bg_grey%}$char_260$char_261$char_262$char_333%{$reset_color$fg_blue$bg_grey%}$char_333$char_262$char_261$char_260%{$bold_color$fg_white$bg_grey%} %D{%a %b %d} %D{%I:%M:%S%P}$prompt_newline%{$bold_color$fg_yellow$bg_grey%}$PWD>%{$reset_color%} " - PS2="%{$bold_color$fg_blue$bold_color%}$char_333$char_262$char_261$char_260%{$reset_color$fg_blue$bg_grey%}$char_260$char_261$char_262$char_333%{$reset_color$fg_blue$bg_grey%}$char_333$char_262$char_261$char_260%{$bold_color$bold_color$fg_blue%}>%{$reset_color%} " - - precmd () { } - preexec () { } -} - -prompt_combo_setup "$@" diff --git a/Functions/Prompts/prompt_cyan_setup b/Functions/Prompts/prompt_cyan_setup deleted file mode 100644 index 32e790f9f..000000000 --- a/Functions/Prompts/prompt_cyan_setup +++ /dev/null @@ -1,18 +0,0 @@ -# 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 "$@" diff --git a/Functions/Prompts/prompt_green_setup b/Functions/Prompts/prompt_green_setup deleted file mode 100644 index 8b08d5d3b..000000000 --- a/Functions/Prompts/prompt_green_setup +++ /dev/null @@ -1,18 +0,0 @@ -# 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_green_setup () { - PS1="%{$fg_green$bg_green$bold_color%}$char_333$char_262$char_261$char_260%{$fg_white$bg_green$bold_color%}%n@%m%{$reset_color$fg_green$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_green$bg_grey$bold_color%}%~/%{$reset_color%} " - PS2="%{$fg_green$bg_grey%}$char_333$char_262$char_261$char_260%{$reset_color%}>" - - precmd () { } - preexec () { } -} - -prompt_green_setup "$@" diff --git a/Functions/Prompts/prompt_magenta_setup b/Functions/Prompts/prompt_magenta_setup deleted file mode 100644 index 2bc256267..000000000 --- a/Functions/Prompts/prompt_magenta_setup +++ /dev/null @@ -1,18 +0,0 @@ -# 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 "$@" diff --git a/Functions/Prompts/prompt_red_setup b/Functions/Prompts/prompt_red_setup deleted file mode 100644 index e10d43bcd..000000000 --- a/Functions/Prompts/prompt_red_setup +++ /dev/null @@ -1,18 +0,0 @@ -# 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_red_setup () { - PS1="%{$fg_red$bg_red$bold_color%}$char_333$char_262$char_261$char_260%{$fg_white$bg_red$bold_color%}%n@%m%{$reset_color$fg_red$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_red$bg_grey$bold_color%}%~/%{$reset_color%} " - PS2="%{$fg_red$bg_grey%}$char_333$char_262$char_261$char_260%{$reset_color%}>" - - precmd () { } - preexec () { } -} - -prompt_red_setup "$@" diff --git a/Functions/Prompts/prompt_white_setup b/Functions/Prompts/prompt_white_setup deleted file mode 100644 index 9a8184b9f..000000000 --- a/Functions/Prompts/prompt_white_setup +++ /dev/null @@ -1,18 +0,0 @@ -# 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_white_setup () { - PS1="%{$fg_white$bg_white$bold_color%}$char_333$char_262$char_261$char_260%{$fg_white$bg_white$bold_color%}%n@%m%{$reset_color$fg_white$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_white$bg_grey$bold_color%}%~/%{$reset_color%} " - PS2="%{$fg_white$bg_grey%}$char_333$char_262$char_261$char_260%{$reset_color%}>" - - precmd () { } - preexec () { } -} - -prompt_white_setup "$@" diff --git a/Functions/Prompts/prompt_yellow_setup b/Functions/Prompts/prompt_yellow_setup deleted file mode 100644 index 31a8ac1b0..000000000 --- a/Functions/Prompts/prompt_yellow_setup +++ /dev/null @@ -1,18 +0,0 @@ -# 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_yellow_setup () { - PS1="%{$fg_yellow$bg_yellow$bold_color%}$char_333$char_262$char_261$char_260%{$fg_white$bg_yellow$bold_color%}%n@%m%{$reset_color$fg_yellow$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_yellow$bg_grey$bold_color%}%~/%{$reset_color%} " - PS2="%{$fg_yellow$bg_grey%}$char_333$char_262$char_261$char_260%{$reset_color%}>" - - precmd () { } - preexec () { } -} - -prompt_yellow_setup "$@" |