summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugues Hiegel <hugues@hiegel.fr>2008-03-20 09:42:36 +0100
committerHugues Hiegel <hugues@hiegel.fr>2008-03-20 09:42:36 +0100
commit1a53a4ba1d9581271adb09841baee5423df55ad9 (patch)
treee7d514d63a89f229c4b791c66fb83ec72c9ddf50
parent17d84509ebeab4c76cafb06e59cec4c35f3d2ec9 (diff)
Colors defs moved from Prompts.zsh to Colors.zsh
-rw-r--r--11_Colors.zsh82
-rw-r--r--12_Prompts.zsh (renamed from 11_Prompts.zsh)68
2 files changed, 82 insertions, 68 deletions
diff --git a/11_Colors.zsh b/11_Colors.zsh
new file mode 100644
index 0000000..fa1522c
--- /dev/null
+++ b/11_Colors.zsh
@@ -0,0 +1,82 @@
+##
+## Part of configuration files for Zsh 4
+## by Hugues Hiegel <hugues@hiegel.fr>
+##
+## NO WARRANTY PROVIDED, USE AT YOUR OWN RISKS
+##
+## You are encouraged to use, modify, and redistribute
+## these files with or without this notice.
+##
+
+c_=[
+_c=m
+C_="%{$c_"
+_C="$_c%}"
+
+typeset -A prompt_colors git_colors mail_colors
+
+# I hate kik00l0l colorized prompts, so I'm using a way to
+# give a dominant color for each part of the prompt, each of
+# these remain still configurable one by one.
+# Take a look to set_prompt_colors for these colorizations.
+#
+# To set the dominant color I'm using this :
+#
+# - PS1_ROOT when we are root
+# - PS1_USER for normal usage
+# - PS1_USER_SSH when we are connected through SSH
+#
+# I'm storing the resulting dominant color in $prompt_colors[generic]
+
+PS1_ROOT=${PS1_ROOT:-$color[red]}
+PS1_USER=${PS1_USER:-$color[blue]}
+PS1_USER_SSH=${PS1_USER_SSH:-$color[magenta]}
+prompt_colors[generic]=`print -Pn "%(! $PS1_ROOT $PS1_USER)"`
+
+normal_user && if ( [ "$SSH_TTY" != "" ] )
+then
+ # This allows us to easily distinguish shells
+ # which really are on the local machine or not.
+ # That's so good, use it ! :-)
+ prompt_colors[generic]=${PS1_USER_SSH:-$prompt_colors[generic]}
+fi
+
+#
+# This func is intended to give a quick way to set the colors for the
+# prompt inside a running zsh-session
+#
+set_prompt_colors ()
+{
+ prompt_colors[generic]=${1:-$prompt_colors[generic]}
+
+ prompt_colors[path]="$color[none];$prompt_colors[generic];$color[bold]" # pwd
+ #prompt_colors[term]="$color[none];$prompt_colors[generic]" # tty
+ prompt_colors[user]="$color[none];$prompt_colors[generic]" # login
+ prompt_colors[host]="$color[none];$prompt_colors[generic]" # hostname
+ #prompt_colors[hist]="$color[none]" # history number
+ prompt_colors[arob]="$color[none];$color[bold];$prompt_colors[generic]" # <login>@<hostname>
+ prompt_colors[dies]="$color[none];$prompt_colors[generic]" # the bottom-end of the prompt
+ prompt_colors[doubledot]="$color[none];" # separates pwd from git-branch
+ #prompt_colors[paren]="$color[none];$color[cyan]" # parenthesis (around tty)
+ prompt_colors[bar]="$color[none];$prompt_colors[generic];$color[bold]" # horizontal bar
+ prompt_colors[braces]=$prompt_colors[bar] # braces (around date)
+ prompt_colors[error]="$color[bold];$color[yellow]" # error code
+ prompt_colors[date]="$color[none];$prompt_colors[generic]" # full date
+
+ prompt_colors[cmd]="$color[none]" # command prompt
+ prompt_colors[exec]="$color[none]" # command output
+
+ mail_colors[unread]="$color[none];$color[yellow];$color[bold]" # mail received
+ mail_colors[listes]="$color[none];$color[red];$color[bold]" # less important mail received
+
+ prompt_colors[up_to_date]="$color[none];$prompt_colors[generic]" # up-to-date
+ prompt_colors[not_up_to_date]="$color[none];$color[green];$color[bold]" # not up to date
+ prompt_colors[to_be_commited]="$color[none];$color[yellow];$color[bold]" # changes in cache
+
+ git_colors[managment_folder]="$color[none];$color[red];$color[bold]" # .git/... folder browsing
+ git_colors[cached]="$prompt_colors[to_be_commited]" # git changes in cache
+ git_colors[not_up_to_date]="$prompt_colors[not_up_to_date]" # git changes in working tree
+ git_colors[up_to_date]="$prompt_colors[up_to_date]" # git up-to-date
+}
+
+set_prompt_colors
diff --git a/11_Prompts.zsh b/12_Prompts.zsh
index 3c490fe..d9ae9fa 100644
--- a/11_Prompts.zsh
+++ b/12_Prompts.zsh
@@ -8,74 +8,6 @@
## these files with or without this notice.
##
-# I hate kik00l0l colorized prompts, so I'm using a way to
-# give a dominant color for each part of the prompt, each of
-# these remain still configurable one by one.
-# Take a look to set_prompt_colors for these colorizations.
-#
-# To set the dominant color I'm using this :
-#
-# - PS1_ROOT when we are root
-# - PS1_USER for normal usage
-# - PS1_USER_SSH when we are connected through SSH
-#
-# I'm storing the resulting dominant color in $GENERIC
-
-typeset -A prompt_colors git_colors mail_colors
-
-PS1_ROOT=${PS1_ROOT:-$color[red]}
-PS1_USER=${PS1_USER:-$color[blue]}
-PS1_USER_SSH=${PS1_USER_SSH:-$color[magenta]}
-prompt_colors[generic]=`print -Pn "%(! $PS1_ROOT $PS1_USER)"`
-
-normal_user && if ( [ "$SSH_TTY" != "" ] )
-then
- # This allows us to easily distinguish shells
- # which really are on the local machine or not.
- # That's so good, use it ! :-)
- prompt_colors[generic]=${PS1_USER_SSH:-$prompt_colors[generic]}
-fi
-
-c_=[
-_c=m
-C_="%{$c_"
-_C="$_c%}"
-
-set_prompt_colors ()
-{
- prompt_colors[generic]=${1:-$prompt_colors[generic]}
-
- ## Les couleurs !! ##
- prompt_colors[path]="$color[none];$prompt_colors[generic];$color[bold]" # pwd
- #prompt_colors[term]="$color[none];$prompt_colors[generic]" # tty
- prompt_colors[user]="$color[none];$prompt_colors[generic]" # login
- prompt_colors[host]="$color[none];$prompt_colors[generic]" # hostname
- #prompt_colors[hist]="$color[none]" # history number
- prompt_colors[arob]="$color[none];$color[bold];$prompt_colors[generic]" # <login>@<hostname>
- prompt_colors[dies]="$color[none];$prompt_colors[generic]" # the bottom-end of the prompt
- prompt_colors[doubledot]="$color[none];" # separates pwd from git-branch
- #prompt_colors[paren]="$color[none];$color[cyan]" # parenthesis (around tty)
- prompt_colors[bar]="$color[none];$prompt_colors[generic];$color[bold]" # horizontal bar
- prompt_colors[braces]=$prompt_colors[bar] # braces (around date)
- prompt_colors[error]="$color[bold];$color[yellow]" # error code
- prompt_colors[date]="$color[none];$prompt_colors[generic]" # full date
-
- prompt_colors[cmd]="$color[none]" # command prompt
- prompt_colors[exec]="$color[none]" # command output
-
- mail_colors[unread]="$color[none];$color[yellow];$color[bold]" # mail received
- mail_colors[listes]="$color[none];$color[red];$color[bold]" # less important mail received
-
- prompt_colors[up_to_date]="$color[none];$prompt_colors[generic]" # up-to-date
- prompt_colors[not_up_to_date]="$color[none];$color[green];$color[bold]" # not up to date
- prompt_colors[to_be_commited]="$color[none];$color[yellow];$color[bold]" # changes in cache
-
- git_colors[managment_folder]="$color[none];$color[red];$color[bold]" # .git/... folder browsing
- git_colors[cached]="$prompt_colors[to_be_commited]" # git changes in cache
- git_colors[not_up_to_date]="$prompt_colors[not_up_to_date]" # git changes in working tree
- git_colors[up_to_date]="$prompt_colors[up_to_date]" # git up-to-date
-}
-
set_prompt_colors $prompt_colors[generic]
## Prompts