From c90d56078268662b821437cbfe6e79875bac17da Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 1 Mar 2009 13:03:30 +0100 Subject: Updated prompt generation, fixed some RPS1 problems --- etc/functions/dirinfo | 8 +++++++- etc/prompt | 39 +++++++++++++++++++++++++-------------- 2 files changed, 32 insertions(+), 15 deletions(-) (limited to 'etc') diff --git a/etc/functions/dirinfo b/etc/functions/dirinfo index 5781580..689c20f 100755 --- a/etc/functions/dirinfo +++ b/etc/functions/dirinfo @@ -10,4 +10,10 @@ typeset string [[ -d .svn ]] && string+='svn ' [[ -f Makefile || -f makefile ]] && string+='make ' -echo $string +# if we're running in screen, we're the only one writing into the prompt +# -> no trailing whitespace +if [[ $TERM == screen ]] { + echo ${string% } +} else { + echo $string +} diff --git a/etc/prompt b/etc/prompt index 2cdfc8b..46f4b94 100644 --- a/etc/prompt +++ b/etc/prompt @@ -6,22 +6,33 @@ # psvar[1] = directory info # psvar[2] = rtab (current directory) -host="${ps_yellow}%m" -dir="${ps_reset}%30<…<%2v%>>" -(( EUID )) && ps_sign=$ps_green || ps_sign=$ps_red -sign="%(!.#.>)" -sign="${ps_sign}%(?.${sign}.%?)${ps_reset}" -screen=$'%{\ek\e\\%}' - -PS1="${host} ${dir} ${sign} ${screen}" -RPS1="${ps_yellow}[${ps_info}%1v${ps_yellow}" -if [[ $TERM != screen ]] { - RPS1+='%T' +typeset -A ps rps + +ps=( + host "${ps_yellow}%m" + dir "${ps_reset}%30<…<%2v%>>" + sign "%(!.${ps_red}.${ps_green})%(?.%(!.#.>).%?)${ps_reset}" + screen $'%{\ek\e\\%}' +) + +rps=( + start_always "${ps_yellow}[" + start_screen "%(1V.${ps_yellow}[" + dirinfo "${ps_info}%1v${ps_reset}" + time '%T' + end_always "${ps_yellow}]${ps_reset}" + end_screen "%(1V.${ps_yellow}]${ps_reset}.)" +) + +PS1="${ps[host]} ${ps[dir]} ${ps[sign]} ${ps[screen]}" + +if [[ $TERM == screen ]] { + RPS1="${rps[start_screen]}${rps[dirinfo]}${rps[end_screen]}" +} else { + RPS1="${rps[start_always]}${rps[dirinfo]}${rps[time]}${rps[end_always]}" } -RPS1+="]${ps_reset}" -unset user at host -unset dir ps_sign sign screen +unset ps rps zstyle ':prompt:rtab' fish yes zstyle ':prompt:rtab' nameddirs yes -- cgit v1.2.3