summaryrefslogtreecommitdiff
path: root/prompt
blob: 3bb8e65839d7fa9a044dcf82dad7a548d90c147d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
##################################################################### CONFIG
default_user=lvv  # default user is not displayed
default_host="ahp"      # default host is not displayed
default_domain="lvvnet" # default domain is not deplayed, remote host is alwais shown
 
    # dir, rc, root color 
if [ "`tput colors`" -ge 8 ];  then #  if terminal supports colors
dir_color='CYAN'
rc_color='red'
root_id_color='magenta'
else #  only B/W
dir_color='bw_bold'
rc_color='bw_bold'
fi
 
                                                    # where is user color?
 
    # per host color
    TOSHA_host_color='yellow'
    TASHA_host_color='cyan'
       AL_host_color='green'
       SH_host_color='blue'
      LVV_host_color='blue'
      AHP_host_color='white'
 
    # git state colors
    git_clean=blue         # nothing to commit (working directory clean)
    git_modified=red       # # Changed but not updated:
    git_added=green        # # Changes to be committed:
    git_mixed=yellow       # 
    git_untracked=BLUE     # # Untracked files:
    git_op=MAGENTA         
    git_detached=RED
 
 
#####################################################################  post config
 
######################################## terminfo colors
#
#   black?    0 8   
# red       1 9
# green     2 10
# yellow    3 11
# blue      4 12
# magenta   5 13
# cyan      6 14
# white     7 15
#
# terminfo setaf/setab - sets ansi foreground/background
# terminfo sgr0 - resets all atributes
# terminfo colors - number of colors
 
### if term support colors,  then use color prompt, else bold
 
              black='\['`tput sgr0; tput setaf 0`'\]'
                red='\['`tput sgr0; tput setaf 1`'\]'
              green='\['`tput sgr0; tput setaf 2`'\]'
             yellow='\['`tput sgr0; tput setaf 3`'\]'
               blue='\['`tput sgr0; tput setaf 4`'\]'
            magenta='\['`tput sgr0; tput setaf 5`'\]'
               cyan='\['`tput sgr0; tput setaf 6`'\]'
              white='\['`tput sgr0; tput setaf 7`'\]'
 
              BLACK='\['`tput setaf 0; tput bold`'\]'
                RED='\['`tput setaf 1; tput bold`'\]'
              GREEN='\['`tput setaf 2; tput bold`'\]'
             YELLOW='\['`tput setaf 3; tput bold`'\]'
               BLUE='\['`tput setaf 4; tput bold`'\]'
            MAGENTA='\['`tput setaf 5; tput bold`'\]'
               CYAN='\['`tput setaf 6; tput bold`'\]'  # why 14 dosn't work?
              WHITE='\['`tput setaf 7; tput bold`'\]'
 
            bw_bold='\['`tput bold`'\]'
               bell=`tput bel`
 
       colors_reset='\['`tput sgr0`'\]'
 
# Workaround for UTF readline(?) bug. Dissable bell when UTF
locale |grep -qi UTF && bell=''
 
 
    # replace symbolic colors names to raw treminfo strings
    git_modified=${!git_modified}
    git_untracked=${!git_untracked}
    git_clean=${!git_clean}
    git_added=${!git_added}
    git_op=${!git_op}
    git_mixed=${!git_mixed}
    git_detached=${!git_detached}
 
##################################################################### 
# if label non empty, append 1 space
label=${1:+$1 }
 
 
# echo "*** /etc/prompt  on A,  TERM=$TERM"
unset PROMPT_COMMAND
 
#######  work aroud for MC bug
if [ -z "$TERM" -o "$TERM" = "dumb" -o -n "$MC_SID" ]; then
unset PROMPT_COMMAND
PS1='\w> '
return 0
fi
 
export who_where
 
 
set_shell_title() { 
 
xterm_title() { echo  -n "]2;${@}" ; }
 
screen_title() { 
FIXME: run this only if screen is in xterm (how to test for this?)
xterm_title  "sCRn  $label$plain_who_where $@" 
 
FIXME $STY not enherited though "su -"
[ "$STY" ] && screen -S $STY -X title "$@"
}
 
case $TERM in
 
screen*)                                                    
screen_title "$@"
;;
 
xterm* | rxvt* | gnome-terminal | konsole | eterm | wterm )       
# is there a capability which we can to test 
# for "set term title-bat" and its escapes?
#echo -n "]2;$label$plain_who_where $1"
xterm_title  "$label$plain_who_where $@"
;;
 
*)                                                     
;;
esac
}
 
export -f set_shell_title
 
###################################################### ID (user name)
id=`id -un`
id=${id#$default_user}
 
###################################################### TTY
tty=`tty`
tty=`echo $tty | sed "s:/dev/pts/:p:; s:/dev/tty::" ` # RH tty devs
tty=`echo $tty | sed "s:/dev/vc/:vc:" ` # gentoo tty devs
 
if [[ "$TERM" = "screen" ]] ;  then
 
# [ "$WINDOW" = "" ] && WINDOW="?"
#
# # if under screen then make tty name look like s1-p2
# # tty="${WINDOW:+s}$WINDOW${WINDOW:+-}$tty"
# tty="${WINDOW:+s}$WINDOW"  # replace tty name with screen number
tty="$WINDOW"  # replace tty name with screen number
fi
 
# we don't need tty name under X11
case $TERM in
xterm* | rxvt* | gnome-terminal | konsole | eterm | wterm )  unset tty ;;
*)                                                               ;;
esac
 
 
    dir_color=${!dir_color}
    rc_color=${!rc_color}
    root_id_color=${!root_id_color}
 
 
########################################################### HOST
### we don't display home host/domain  $SSH_* set by SSHD or keychain
 
    # I give up.  How to find out if session is local or remote? Working with "su -", ssh-agent, and so on ? 
## is sshd our perent?
# if  { for ((pid=$$; $pid != 1 ; pid=`ps h -o pid --ppid $pid`)); do ps h -o command -p $pid; done | grep -q sshd }
#then 
host=${HOSTNAME}
#host=`hostname --short`
host=`echo ${host%$default_host} | tr a-z A-Z`
#host=`echo ${host} | tr a-z A-Z`
        host_color=${host}_host_color
        host_color=${!host_color}
#else
# host=""
#fi 
 
    host_color=${!host_color}
 
# we already should have short host name, but just in case
host=${host%.localdoman}
host=${host%.$default_domain}
 
 
########################################################### WHO_WHERE 
# who_ware. Is constant.  Looks like
#  [user@]host[-tty]
 
color_who_where="${id:+$id@}$host_color$host${tty:+ $tty}"
plain_who_where="${id:+$id@}$host"
 
# remove trailing "@" if any
color_who_where="${color_who_where%@}"
plain_who_where="${plain_who_where%@}"
 
# add traling " "
color_who_where="$color_who_where "
plain_who_where="$plain_who_where "
 
# if  $who_where==" "  then  who_where=""
color_who_where="${color_who_where## }"
plain_who_where="${plain_who_where## }"
 
 
# if root then highlight who_where
if [ "$id" == "root" ]  ; then 
color_who_where="$root_id_color$color_who_where$colors_reset"
fi
 
 
############################################################### PROMPT_COMMAND
 
PROMPT_COMMAND='
 
rc="$?"
 
if [[ "$rc" = "0" ]]; then 
rc=""
else
#rc="$rc_color$rc$colors_reset$bell "
rc="$rc_color$rc$colors_reset "
fi
 
set_shell_title "$PWD/" 
 
# truncate $PWD to $max
max=35
front=7
head=${PWD:0:$front}"..."
 
    # LOCALS
        # SVN 
        # ...
       
        # make
        # ...
        
        # GIT 
            git_dir=`git-rev-parse --git-dir 2> /dev/null`
            if [[ $git_dir ]];   then
 
                eval `git status 2>/dev/null |
                        sed -n "
                            s/^# On branch /branch=/p
 
                            s/^nothing to commit (working directory clean)/clean=clean/p
 
                            /^# Untracked files:/,/^[^#]/{
                                s/^# Untracked files:/untracked=untracked/p
                                s/^# /git_untracked_files+=\" \"/p   
                            }
 
                            /^# Changed but not updated:/,/^# [A-Z]/ {
                                s/^# Changed but not updated:/modified=modified/p
                                s/^# modified:   /git_modified_files+=\" \"/p
                                s/^# unmerged:   /git_modified_files+=\" \"/p
                            }
 
                            /^# Changes to be committed:/,/^# [A-Z]/ {
                                s/^# Changes to be committed:/added=added/p
                                s/^# modified:   /git_added_files+=\" \"/p
                                s/^# new file: */git_added_files+=\" \"/p
                                s/^# renamed:[^>]*> /git_added_files+=\" \"/p
                            }
                        " 
                `
 
                ### OP 
                unset op
                
                if [[ -d "$git_dir/.dotest" ]] ;  then
 
                    if [[ -f "$git_dir/.dotest/rebasing" ]] ;  then
                        op="rebase"
 
                    elif [[ -f "$git_dir/.dotest/applying" ]] ; then
                        op="am"
 
                    else
                        op="am/rebase"
 
                    fi
 
                elif  [[ -f "$git_dir/.dotest-merge/interactive" ]] ;  then
                    op="rebase -i"
                    # ??? branch="$(cat "$git_dir/.dotest-merge/head-name")"
 
                elif  [[ -d "$git_dir/.dotest-merge" ]] ;  then
                    op="rebase -m"
                    # ??? branch="$(cat "$git_dir/.dotest-merge/head-name")"
                    
                elif  [[ -f "$git_dir/MERGE_HEAD" ]] ;  then
                    op="merge"
                    # ??? branch="$(git symbolic-ref HEAD 2>/dev/null)"
                    
                else
                    [[  -f "$git_dir/BISECT_LOG"  ]]   &&  op="bisect"
                    # ??? branch="$(git symbolic-ref HEAD 2>/dev/null)" || \
                    #    branch="$(git describe --exact-match HEAD 2>/dev/null)" || \
                    #    branch="$(cut -c1-7 "$git_dir/HEAD")..."
                fi
 
                
                ### branch
 
                branch=${branch/master/M}
 
                grep -q "^ref:" $git_dir/HEAD  2>/dev/null  ||  detached=detached
                [[ -n "$detached" ]]  &&  branch="<detached:`git-name-rev --name-only HEAD 2>/dev/null`>"
 
                if [[ "$op" == "merge" ]] ;  then     
                    branch="$op: $branch <~ $(git-name-rev --name-only $(<$git_dir/MERGE_HEAD))"
 
                elif   [[ -n "$op" ]];     then
                    branch="<$op:$branch>"
 
                fi
 
                head_rev=`git-rev-parse HEAD 2>/dev/null`
                head_rev=${head_rev/HEAD/}
                head_rev=${head_rev:0:6}
 
             
                ### sort statuses, choose primary (for branch color)
                status=${op+op}
                status=${status:-$detached}
                status=${status:-$clean}
                status=${status:-$modified}
                status=${status:-$added}
                status=${status:-$untracked}
                                        # at least one should be set
                                        : ${status?prompt internal error: git status}
                eval git_color="\${git_$status}"
                git_color=${git_color:-$WHITE}    # default 
 
                ### compose local label
                
                unset file_list
                file_list+="${git_added_files+$git_added$git_added_files}"
                file_list+="${git_modified_files+$git_modified$git_modified_files}"
                file_list+="${git_untracked_files+$git_untracked$git_untracked_files}"
                [[ $file_list ]] && file_list=":${file_list}"          # ${+  does not works (?)
                tail_local="(${branch} $white$head_rev$git_color$git_color${file_list}$git_color)"
 
                ### fringes (added depended on location)
                head_local="${head_local+$git_color $head_local\n}"
                tail_local="${tail_local+$git_color $tail_local}${dir_color}"
 
                unset  branch status git_color sep file_list
                unset  clean added modified untracked detached
                unset  git_modified_files
                unset  git_untracked_files 
                unset  git_added_files 
            fi 
    #########################
    
 
# PS1="$label$rc'$color_who_where$dir_color'${head:10*(${#PWD}<max)}${PWD:(${#PWD}>max)*(${#PWD}-max):max}> '$colors_reset'"
    
PS1="$head_local$colors_reset$label$rc'$color_who_where$dir_color'\w$tail_local'$dir_color'> '$colors_reset'"
 
    unset head_local tail_local
'
#echo \"$color_who_where\"
unset rc id tty bell default_user default_host
unset rc_colors dir_color root_id_color 
 
# vim: set syntax=sh: