X-Git-Url: https://defaria.com/gitweb/?a=blobdiff_plain;f=rc%2Ffunctions;h=48c823d511b1c874e431bfcd3444fe420412b36a;hb=18385edca6c1b1d92351133ab2696c48a48b3f07;hp=1f8dcdc1ac15cd1c59d9d32f411bc58191447804;hpb=1140ca8d56832ae529db0f353112ac192cdf9432;p=clearscm.git diff --git a/rc/functions b/rc/functions index 1f8dcdc..48c823d 100644 --- a/rc/functions +++ b/rc/functions @@ -15,6 +15,8 @@ ESC=$(echo "\033") CR=$(echo "\015") +export WIZARD="Wizard" + view_name= # Function to set the title bar. Works on the terminal emulators listed. @@ -90,7 +92,7 @@ function title { # view and a string to indicate that you are root. function set_title { if [ $($id -u) -eq 0 ]; then - root="Wizard " + root="$WIZARD " else root= fi @@ -119,19 +121,21 @@ function set_prompt { "$TERM" = "2392A" -o \ "$TERM" = "dtterm" -o \ "$TERM" = "vt100" -o \ + "$TERM" = "cygwin" -o \ "$TERM" = "xterm" -o \ "$TERM" = "xtermc" -o \ "$TERM" = "xterm-256color" -o \ "$TERM" = "vt220" ]; then - ROOT="\[${ROOT_COLOR}\]Wizard\[$NORMAL\] " + ROOT="\[${ROOT_COLOR}\]$WIZARD\[$NORMAL\] " else - ROOT="Wizard " + ROOT="$WIZARD " fi else ROOT="" fi if [ "$TERM" = "vt100" -o \ + "$TERM" = "cygwin" -o \ "$TERM" = "xterm" -o \ "$TERM" = "xtermc" -o \ "$TERM" = "xterm-256color" -o \ @@ -224,7 +228,7 @@ function sj { ps $psopts | $PAGER else for str; do - ps $psopts | grep "$str" | grep -v "grep $str" | grep -v "grep -d skip" + ps $psopts | grep "$str" | grep -ve "grep $str" -e "grep -d skip" -e "grep --color=auto" done fi } # sj