Miscellaneous updates.
[scripts.git] / bashrc
1 # -*-Shell-script-*-
2
3 #########################################################################
4 # This program is free software: you can redistribute it and/or modify  #
5 # it under the terms of the version 3 of the GNU General Public License #
6 # as published by the Free Software Foundation.                         #
7 #                                                                       #
8 # This program is distributed in the hope that it will be useful, but   #
9 # WITHOUT ANY WARRANTY; without even the implied warranty of            #
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      #
11 # General Public License for more details.                              #
12 #                                                                       #
13 # You should have received a copy of the GNU General Public License     #
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.  #
15 #                                                                       #
16 # Written by and Copyright (C) Francois Fleuret                         #
17 # Contact <francois@fleuret.org> for comments & bug reports             #
18 #########################################################################
19
20 # The site-specific and confidential settings are in another file
21
22 PRIVATE_BASHRC="${HOME}/private/bashrc.perso"
23
24 # If the MANPATH is not set, set it
25
26 [ "${MANPATH}" ] || MANPATH=$(manpath)
27
28 # If the private bashrc exists, execute it
29
30 [ -f "${PRIVATE_BASHRC}" ] && source "${PRIVATE_BASHRC}"
31
32 # !!! THIS HAS TO BE HERE EVEN IN THE NON-INTERACTIVE PART OR YOU WILL
33 # LOSE YOU PREVIOUS HISTORY !!!
34
35 export HISTFILESIZE=20000
36 export HISTSIZE=${HISTFILESIZE}
37
38 export HISTIGNORE="${HISTIGNORE}:&:[ ]*"
39
40 # I want to save the command time, but I do not want to see it in
41 # history
42
43 export HISTTIMEFORMAT=""
44
45 shopt -s histappend
46
47 # I realized that most of my settings are meaningful only in
48 # interactive mode. This should maybe be done more properly through
49 # using different .bash_profile and .bash_login
50
51 [[ ${TERM} == "dumb" ]] || [ ! -t 0 ] && return
52
53 ######################################################################
54 ## The interactive part
55
56 export VT_RESET=$'\e[0m'
57 export VT_BOLD=$'\e[1m'
58 export VT_UNDERLINE=$'\e[4m'
59 export VT_BLINK=$'\e[5m'
60
61 export VT_SET_TITLE=$'\e]0;'
62 export VT_END_TITLE=$'\007'
63
64 export VT_BLACK_FG=$'\e[30m'
65 export VT_RED_FG=$'\e[31m'
66 export VT_GREEN_FG=$'\e[32m'
67 export VT_YELLOW_FG=$'\e[33m'
68 export VT_BLUE_FG=$'\e[34m'
69 export VT_MAGENTA_FG=$'\e[35m'
70 export VT_CYAN_FG=$'\e[36m'
71 export VT_WHITE_FG=$'\e[37m'
72
73 export VT_BLACK_BG=$'\e[40m'
74 export VT_RED_BG=$'\e[41m'
75 export VT_GREEN_BG=$'\e[42m'
76 export VT_YELLOW_BG=$'\e[43m'
77 export VT_BLUE_BG=$'\e[44m'
78 export VT_MAGENTA_BG=$'\e[45m'
79 export VT_CYAN_BG=$'\e[46m'
80 export VT_WHITE_BG=$'\e[47m'
81
82 # Colorize man pages!
83
84 export LESS_TERMCAP_us=${VT_GREEN_FG}
85 export LESS_TERMCAP_ue=${VT_RESET}
86 export LESS_TERMCAP_md=${VT_BLUE_FG}${VT_BOLD}
87 export LESS_TERMCAP_me=${VT_RESET}
88
89 # export LESS_TERMCAP_md=$'\e[1;34;40m'
90
91 # This prevents ^S from freezing the shell
92
93 stty -ixon
94
95 ulimit -c unlimited
96
97 alias ..='cd ..'
98 alias -- -='cd -'
99 alias rm='rm -i'
100 alias mv='mv -i'
101 # alias chmod='chmod -v'
102 alias chmod='chmod -c'
103 alias cp='cp -i'
104 alias rd=rmdir
105 alias md='mkdir -v'
106 alias ps='ps uxaf'
107 alias df='df -hT --sync'
108 alias grep='grep -E --mmap --color=auto'
109 alias find='ionice -c3 find'
110 alias pd=pushd
111 alias val='valgrind --leak-check=full --show-reachable=yes --db-attach=yes '
112
113 alias s='screen -d -R -U && clear'
114
115 # alias kj="keyjnote -s -D 1000 -t Crossfade -T 100"
116 alias impressive="impressive -s -D 1000 -t Crossfade -T 100"
117
118 # alias fdupes='fdupes -r .'
119
120 # ls colors
121
122 if [ -e "${HOME}/.dircolors" ]; then
123     eval $(dircolors "${HOME}/.dircolors")
124     alias ls='ls --group-directories-first --color'
125     alias lt='ls --color -gohtr --time-style="+%Y %b %d %H:%M"'
126     alias ll='ls --color -goh --time-style="+%Y %b %d %H:%M"'
127     alias lll='ls --color -lth'
128     alias l='ls --color -I "*~" -I "*.o"'
129     alias less='less -R'
130 else
131     alias ls='ls --group-directories-first'
132     alias lt='ls -gohtr --time-style="+%Y %b %d %H:%M"'
133     alias ll='ls -goh --time-style="+%Y %b %d %H:%M"'
134     alias lll='ls -lth'
135     alias l='ls -I "*~" -I "*.o"'
136 fi
137
138 export EDITOR=emacsclient
139 export GIT_EDITOR=${EDITOR}
140
141 ######################################################################
142 # Ignored extensions when completing
143
144 # export FIGNORE="CVS"
145
146 ######################################################################
147 # Functions
148
149 # Find a file whose name contains a substring
150
151 function fn () {
152     name=$1
153     shift
154     find "$@" -name "*${name}*";
155 }
156
157 function bak () {
158     while [[ "$1" ]]; do
159         cp "$1" "$1".bak
160         shift
161     done
162 }
163
164 function ua () {
165     while [[ "$1" ]]; do
166
167         case "$1" in
168
169             *.tgz|*.tar.gz)
170                 tar zxvf "$1"
171                 ;;
172
173             *.rar)
174                 unrar x "$1"
175                 ;;
176
177             *.zip)
178                 unzip "$1"
179                 ;;
180
181             *)
182                 echo "Unknown file extension $1"
183                 ;;
184         esac
185
186         shift
187
188     done
189 }
190
191 # Create a dir and cd there
192
193 function mcd () {
194     mkdir -vp "$1"
195     cd "$1"
196 }
197
198 # Capture the screen in a dated png
199
200 function cap () {
201     if [[ $2 ]]; then
202         name=$2
203     else
204         name="capture-$(date +%s).png"
205     fi
206     echo "Waiting $1 s and saving to ${name}."
207     [[ "$1" ]] && sleep "$1"
208     echo "Please click on the window to capture."
209     xwd  | convert - ${name}
210     \ls -l ${name}
211 }
212
213 # Create and CD in a /tmp/tmp.XXXXXX directory. With the '-'
214 # arguments, do not create one and CD in the most recent instead
215
216 function cdt () {
217     if [[ "$1" ]]; then
218         if [[ "$1" == "-" ]]; then
219             cd $(\ls -td /tmp/tmp.?????? | head -1)
220         else
221             echo "USAGE: cdt [-]" >&2
222             return 1
223         fi
224     else
225         cd $(mktemp -d /tmp/tmp.XXXXXX)
226     fi
227 }
228
229 alias t='cd /tmp'
230
231 function trash () {
232     TRASH=$(date +/tmp/trash-%Y-%b-%d-%Hh)
233
234     if [[ -d ${TRASH} ]]; then
235         echo "Re-use ${TRASH}"
236     else
237         mkdir ${TRASH}
238         echo "Created ${TRASH}"
239     fi
240
241     mv "$@" ${TRASH}
242     echo "Trashed $@"
243 }
244
245 # alias trash=trash.sh
246
247 function mmsget () {
248     mplayer "$1" -dumpstream -dumpfile $(basename "$1")
249 }
250
251 function quicktex () {
252     if [[ $1 ]]; then
253         MAIN=$1
254     else
255         MAIN=$(\ls -t *.tex | head -1 | sed -r -e 's/\.tex//')
256     fi
257     pdflatex ${MAIN}
258     bibtex ${MAIN}
259     pdflatex ${MAIN}
260     pdflatex ${MAIN}
261     xpdf ${MAIN}.pdf
262 }
263
264 ######################################################################
265 # http://www.reddit.com/r/linux/comments/akt3j/a_functional_programming_style_map_function_for/
266
267 function map () {
268     local command i rep
269     if [ $# -lt 2 ] || [[ ! "$@" =~ :[[:space:]] ]];then
270         echo "Invalid syntax." >&2; return 1
271     fi
272     until [[ "$1" =~ : ]]; do
273         command="$command $1"; shift
274     done
275     command="$command ${1%:}"; shift
276     for i in "$@"; do
277         if [[ $command =~ \{\} ]];then
278             rep="${command//\{\}/\"$i\"}"
279             eval "${rep//\\/\\\\}"
280         else
281             eval "${command//\\/\\\\} \"${i//\\/\\\\}\""
282         fi
283     done
284 }
285
286 ######################################################################
287 ## A version of pho which stores the image numbers in environment
288 ## variables
289
290 function pho () {
291     PHO_BIN=/usr/bin/pho
292     TEMP=$(mktemp /tmp/pho.XXXXXXX)
293     ${PHO_BIN} "$@" | tee ${TEMP}
294     PHO_NOTE_1=$(grep ^"Note 1: " ${TEMP} | sed -e "s/^[^:]*: //")
295     PHO_NOTE_2=$(grep ^"Note 2: " ${TEMP} | sed -e "s/^[^:]*: //")
296     PHO_NOTE_3=$(grep ^"Note 3: " ${TEMP} | sed -e "s/^[^:]*: //")
297     PHO_NOTE_R90=$(grep ^"Rotate 90 \(CW\): " ${TEMP} | sed -e "s/^[^:]*: //")
298     PHO_NOTE_R180=$(grep ^"Rotate 180: " ${TEMP} | sed -e "s/^[^:]*: //")
299     PHO_NOTE_R270=$(grep ^"Rotate -90 \(CCW\): " ${TEMP} | sed -e "s/^[^:]*: //")
300     \rm ${TEMP}
301 }
302
303 # function rotjpeg () {
304     # if [ "$1" == "90" ] || [ "$1" == "180" ] || [ "$1" == "270" ]; then
305         # TEMP=$(mktemp /tmp/rotjpeg.XXXXXX)
306         # echo jpegtran -rotate "$1" -copy all $2 > ${TEMP}
307         # echo cp $2 ${2/jpg/}original.jpg
308         # echo cp ${TEMP} $2
309         # rm ${TEMP}
310     # else
311         # echo "Can not rotate with an angle of "$1" degrees."
312     # fi
313 # }
314
315 ######################################################################
316 ## A version of date that shows the time at home if TZ is set
317
318 function dt () {
319     echo "Local: $(date)"
320     if [[ ${TZ} ]]; then
321         unset TZ
322         echo "Home:  $(date)"
323     fi
324 }
325
326 ######################################################################
327 ## ifup / ifdown with sudo and memorization of the network
328
329 ## When invoked without an argument netup uses the same argument as
330 ## the previous time
331
332 ## When invoked without an argument netdown removes the last interface
333 ## which was netuped
334
335 [[ ${NETUP_HISTORY} ]] || NETUP_HISTORY="${HOME}/.netup_history"
336
337 function netup () {
338     if [[ ! "$@" ]] && [[ -s ${NETUP_HISTORY} ]]; then
339         # If we have no argument and there is a .netup_history, use it
340         ARGS=$(cat ${NETUP_HISTORY})
341     else
342         # Otherwise uses the given arguments, and store them
343         ARGS="$@"
344         echo ${ARGS} > ${NETUP_HISTORY}
345     fi
346
347     if [[ $(ps auxwww | grep dhclient | grep -v grep) ]]; then
348         echo "There is already a dhcp client running." >&2
349         return 1
350     fi
351
352     echo "${VT_GREEN_FG}Executing [sudo ifup ${ARGS}]${VT_RESET}"
353     sudo ifup ${ARGS}
354
355     # Ugly hack to remove the dsl modem dns server when we add
356     # explicitely a dns in the /etc/network/interfaces
357
358     REMOVE_LOCAL_DNS=/usr/local/bin/remove-local-dns.sh
359
360     if [[ -x ${REMOVE_LOCAL_DNS} ]]; then
361         echo "${VT_GREEN_FG}Executing [sudo ${REMOVE_LOCAL_DNS} 192.168]${VT_RESET}"
362         sudo ${REMOVE_LOCAL_DNS} 192.168
363     fi
364 }
365
366 function netdown () {
367     if [[ ! "$@" ]] && [[ -s ${NETUP_HISTORY} ]]; then
368         # If there are no arguments and there is a .netup_history, get the
369         # interface from it
370         ARGS=$(tail -1 ${NETUP_HISTORY} | sed -e "s/=.*$//")
371     else
372         # Otherwise, use the standard ifdown
373         ARGS="$@"
374     fi
375     echo "${VT_GREEN_FG}Executing sudo [ifdown ${ARGS}]${VT_RESET}"
376     sudo ifdown ${ARGS}
377 }
378
379 function checkgw () {
380     GW=$(route -n | grep ^0.0.0.0 | awk '{print $2}')
381     if [[ -n "${GW}" ]]; then
382         ping ${GW}
383     else
384         echo "Can not find a getaway." >&2
385         return 1
386     fi
387 }
388
389 ######################################################################
390 # Show the most recent files, no scroll
391
392 function lr () {
393     HEIGHT=$(stty size | awk '{print $1}')
394     WIDTH=$(stty size | awk '{print $2}')
395     \ls -goth --time-style="+%Y %b %d %H:%M" "$@" | \
396         head -$((HEIGHT-2)) | \
397         cut -b1-${WIDTH}
398 }
399
400 ######################################################################
401 # cd and ls into a directory
402 # [from http://www.oreillynet.com/onlamp/blog/2007/01/whats_in_your_bash_history.html]
403
404 # function c () { cd "$@" && lr; }
405
406 ######################################################################
407 # You can change the xterm background color on the fly!
408
409 function setxtermbg () {
410     echo -n $'\e]11;'$1$'\007'
411 }
412
413 ######################################################################
414 # Shuffle the lines from the stdin
415
416 function shuffle () {
417     SEED=$1
418     [[ $SEED ]] || SEED=0
419     awk 'BEGIN{srand('${SEED}')} { print rand()" "$0 }' | sort -g | sed -e "s/^[0-9\.e\-]* //"
420 }
421
422 ######################################################################
423 # Stores the last entered command into a file
424
425 KEPT_COMMANDS=${HOME}/.kept_bash_commands
426
427 function keep () {
428     if [[ ${KEPT_COMMANDS} ]]; then
429         LINE=$(history | tail -2 | head -1 | sed -e "s/^[0-9 ]*//")
430         echo $LINE
431         echo $(date)": "${LINE} >> ${KEPT_COMMANDS}
432     else
433         echo "You have to set \$KEPT_COMMANDS"
434     fi
435 }
436
437 ######################################################################
438 # I sometime burn CDs and DVDs
439
440 function burn () {
441     DEVICE="/dev/cdrw"
442     if [[ ! "$1" ]]; then
443         echo "burn <iso name | dirname>" >&2
444     elif [[ -f "$1" ]]; then
445         if [[ $(file "$1" | grep "ISO 9660") ]]; then
446             wodim -eject -v dev=${DEVICE} "$1"
447         else
448             echo "Unknown type of $1" >&2
449         fi
450     elif [[ -d "$1" ]]; then
451         TMP=$(mktemp /tmp/cdimage.XXXXXX) && \
452             genisoimage -input-charset iso8859-1 -r -o ${TMP} "$1" && \
453             wodim -eject -v dev=${DEVICE} ${TMP}
454         rm -f ${TMP}
455     else
456         echo "Can not find $1" >&2
457     fi
458 }
459
460 ######################################################################
461 # And watch DVDs too!
462
463 function dvd () {
464
465     echo
466     echo " ! @   Seek to the beginning of the previous/next chapter"
467     echo " j     Cycle through the available subtitles"
468     echo " o     Show/hide the timing"
469     echo " x z   Subtitle delay"
470     echo " / *   Volume"
471     echo
472
473     if [[ "$1" ]]; then
474         dvd_device="$1"
475         shift
476     else
477         dvd_device="/dev/cdrom"
478     fi
479
480     title="1"
481
482     if [[ "$1" ]]; then
483         title=$1
484         shift
485     fi
486
487     mplayer > /dev/null \
488         -stop-xscreensaver \
489         -vc ffmpeg12 -quiet \
490         -vf yadif \
491         -alang en \
492         -softvol -softvol-max 1000 \
493         -dvd-device ${dvd_device} dvd://${title}
494
495 # -slang en
496
497 }
498
499 function ripdvd () {
500     mkdir -p ${HOME}/dvds
501     cd ${HOME}/dvds
502     time dvdbackup -v -M && eject
503 }
504
505 alias ripcd=abcde
506
507 ######################################################################
508 # Upload the sources from the current directory to work
509
510 function ulsrc () {
511     if [[ ! "${MY_WORK_MACHINE}" ]]; then
512         echo "\$MY_WORK_MACHINE undefined" 1>&2
513         return 1
514     fi
515
516     DIR=${PWD/$HOME\//}
517
518     scp {Makefile,*.{cc,h,sh}} ${MY_WORK_MACHINE}:${DIR}
519
520     echo "Uploaded to ${MY_WORK_MACHINE}:${DIR}/"
521 }
522
523 ######################################################################
524 # Create small images from images
525
526 function mksmall () {
527
528     PARAMS="-geometry 800x600"
529
530     # Auto-orient does not seem to work at all, hence the ugly hack
531     # with exif below
532
533     # PARAMS="-auto-orient -geometry 800x600"
534
535     echo "Using ${PARAMS}"
536
537     DEST_DIR=$1
538
539     [[ ${DEST_DIR} ]] || DEST_DIR=./small
540
541     mkdir -p ${DEST_DIR}
542
543     if [[ ! -d ${DEST_DIR} ]]; then
544         echo "Can not create ${DEST_DIR}" >&2
545         return
546     fi
547
548     NB_TOTAL=$(find -maxdepth 1 -type f | wc -l)
549     NB=0
550
551     for i in $(find -maxdepth 1 -type f); do
552         if [[ $(file $i | grep image) ]]; then
553             if [[ -e ${DEST_DIR}/$i ]]; then
554                 echo "The file ${DEST_DIR}/$i already exists."
555             else
556
557                 orientation=$(exif $i \
558                     | grep ^Orientation \
559                     | head -1 \
560                     | sed -e "s/^[^|]*|//" \
561                     | sed -e "s/ *$//")
562
563                 case ${orientation} in
564                     ""|"top - left")
565                         rotation_cmd=""
566                         ;;
567
568                     "right - top")
569                         rotation_cmd="-rotate 90"
570                         ;;
571
572                     "left - bottom")
573                         rotation_cmd="-rotate 270"
574                         ;;
575
576                     *)
577                         rotation_cmd=""
578                         echo "Unknown orientation \"${orientation}\" !"
579                         ;;
580                 esac
581
582                 if [[ $(file ${i/%.*/}.* | grep -E movie) ]] ; then
583                     CAPTION_PARAMS="-font FreeSans-Bold -pointsize 32 -fill green -annotate +10+32 Video"
584                 else
585                     CAPTION_PARAMS=""
586                 fi
587
588                 convert ${rotation_cmd} $i ${PARAMS} ${CAPTION_PARAMS} ${DEST_DIR}/$i
589             fi
590
591             \ls -lt ${DEST_DIR}/$i
592         fi
593
594         NB=$((NB+1))
595
596         echo "$((NB*100/NB_TOTAL))% (${NB}/${NB_TOTAL})"
597     done
598 }
599
600 ######################################################################
601 # Move a file to the ~/sources/config directory and replace it where
602 # it was by a symbolic link
603
604 function mvtoconfig () {
605     CONFIGDIR=${HOME}/sources/config
606     if [[ -d ${CONFIGDIR} ]]; then
607         NEWNAME=${CONFIGDIR}/$(basename "$1" | sed -e "s/^\.//")
608         mv "$1" $NEWNAME
609         ln -s $NEWNAME $1
610     else
611         echo "Can not find ${CONFIGDIR}"
612     fi
613 }
614
615 ######################################################################
616 # Track uncommited files (I presume this is very ugly from a real git
617 # user perspective)
618
619 function git-fm () {
620     CURRENT_DIR=$(pwd)
621     NB_SUBDIR=0
622
623     for i in $(find -name ".git"); do
624         NB_SUBDIR=$((NB_SUBDIR+1))
625         cd ${CURRENT_DIR}/$(dirname $i)
626         NB_MODIFIED=$(git status | grep modified | wc -l)
627         if [[ ${NB_MODIFIED} -gt 0 ]]; then
628             echo "$(dirname $i) (${NB_MODIFIED})"
629             git status | grep modified \
630                 | sed -e "s/^#\t/    /" | sed -e "s/modified: *//"
631         fi
632     done
633
634     cd ${CURRENT_DIR}
635
636     echo "Visited ${NB_SUBDIR} directories."
637 }
638
639 ######################################################################
640 # Commits all directories under git
641
642 alias git-ca="echo Are you sure?"
643
644 function git-ca () {
645     ORIGINAL_PWD=${PWD}
646     UNCOMMITTED=""
647     for d in $(find ${PWD} -name ".git"  | sed -e "s/\.git$//"); do
648         cd $d
649         NB_MODIFIED=$(git status | grep modified | wc -l)
650         if [[ ${NB_MODIFIED} -gt 0 ]]; then
651             if [[ $(pwd) =~ ${NO_AUTOMATIC_GIT_COMMIT} ]]; then
652                 UNCOMMITTED="${UNCOMMITTED} $(pwd)"
653             else
654                 echo $(pwd)" (${NB_MODIFIED} modified file(s))"
655                 git commit -a -m "Automatic commit" | grep -v ^#
656             fi
657             # git gc
658         fi
659     done
660
661     cd ${ORIGINAL_PWD}
662
663     if [[ ${UNCOMMITTED} ]]; then
664         echo "** WARNING: Did not automatically commit${UNCOMMITTED}"
665     fi
666 }
667
668 ######################################################################
669 # Backups all git directories into an encrypted backup file located
670 # either on the usb key or the SD card (in that order) if they can be
671 # mounted.
672
673 function git-backup () {
674
675     BACKUPDIR=/mnt/key
676
677     mount ${BACKUPDIR} 2> /dev/null
678
679     if [[ ! $(mount | grep ${BACKUPDIR}) ]]; then
680         BACKUPDIR=/mnt/sd
681         mount ${BACKUPDIR}
682     fi
683
684     if [[ $(mount | grep ${BACKUPDIR}) ]]; then
685         echo "Mounted ${BACKUPDIR}"
686     else
687         echo "Could not mount the backup directory"
688         return 1
689     fi
690
691     RESULT=${BACKUPDIR}/gitbackup-$(date +%F-%H%M%S).tgz.mc
692
693     tar zcvf - $(find ${HOME}/ -name .git) \
694         | mcrypt -f ${HOME}/private/mcrypt.key > ${RESULT}
695
696     if [[ -f ${RESULT} ]]; then
697         ls -lh ${RESULT}
698     else
699         echo "Could not create the backup!"
700         return 1
701     fi
702
703     sync
704
705     umount ${BACKUPDIR} && echo "Umounted ${BACKUPDIR}"
706 }
707
708 ######################################################################
709 # Downloads torrents located in ${BT_DIR}/torrents/ and puts the
710 # result in the ${BT_DIR}
711
712 function bt () {
713     if [[ ${BT_DIR} ]]; then
714         if [[ -d "${BT_DIR}/torrents" ]]; then
715             if [[ "$1" ]]; then
716                 mv "$1" ${BT_DIR}/torrents
717             fi
718             if [[ "$(ps auxwww | grep btlaunchmanycurses | grep -v grep)" ]]; then
719                 echo "A client is already running."
720             else
721                 cd ${BT_DIR} && screen btlaunchmanycurses torrents --max_upload_rate 32
722             fi
723         else
724             echo "Directory ${BT_DIR}/torrents does not exist."
725         fi
726     else
727         echo "You have to set \$BT_DIR."
728     fi
729 }
730
731 ######################################################################
732 # The complex prompt policy
733
734 export PS1
735
736 if [ "${CONSOLE}" == "yes" ]; then
737     PS1=""
738 else
739
740 # If the login is a standard one (as specified in
741 # IGNORED_PROMPT_LOGIN, which is set in the private bash file), do not
742 # show it. I have IGNORED_PROMPT_LOGIN="^fleuret$".
743
744     if [ ! ${IGNORED_PROMPT_LOGIN} ] || [[ ! ${USER} =~ ${IGNORED_PROMPT_LOGIN} ]]; then
745         IDENT="${USER}"
746     fi
747
748 # If the display is not the main one, make the assumption that the
749 # shell is not running on the localhost, and show the hostname
750
751     [ "${DISPLAY}" != ":0.0" ] && IDENT="${IDENT}@\h"
752
753 # If there is the login or the hostname, add a ":" to the prompt
754
755     [ "${IDENT}" ] && IDENT="${IDENT}:"
756
757 # If we are root, show that in red
758
759     if [[ ${USER} == "root" ]]; then
760         PS1="\[${VT_RED_BG}${VT_WHITE_FG}\]${IDENT}\w\[${VT_RESET}\] "
761     else
762         PS1="\[${VT_WHITE_BG}${VT_BLACK_FG}\]${IDENT}\w\[${VT_RESET}\] "
763     fi
764
765 # In an xterm, show the hostname and path in the title bar, highlight
766 # the prompt
767
768     # [ "${TERMS_WITH_BAR}" ] || TERMS_WITH_BAR="^xterm|screen$"
769
770     # if [[ "${TERM}" =~ "${TERMS_WITH_BAR}" ]]; then
771         # PS1="\[${VT_SET_TITLE}shell@\h (\w)${VT_END_TITLE}${VT_WHITE_BG}\]${IDENT}\w\[${VT_RESET}\] "
772     # else
773         # PS1="\[${VT_WHITE_BG}\]${IDENT}\w\[${VT_RESET}\] "
774     # fi
775
776 fi
777
778 ######################################################################
779 # This implements a local history. If we are in a directory containing
780 # a writable local history file, we add the last line of the global
781 # history to it.
782
783 LOCAL_HISTORY_FILE=".local_bash_history"
784
785 function keep_local_history () {
786     if [[ -w "${LOCAL_HISTORY_FILE}" ]]; then
787         history 1 | sed -e 's/^ *[0-9]* *//' >> ${LOCAL_HISTORY_FILE}
788         TMP=$(mktemp /tmp/lh.XXXXXX)
789         \chmod 600 ${TMP}
790         uniq < ${LOCAL_HISTORY_FILE} | tail -${HISTSIZE} > ${TMP}
791         # mv would replace a symbolic link, while cp keeps it
792         \cp ${TMP} ${LOCAL_HISTORY_FILE}
793         \rm ${TMP}
794         LOCAL_HISTORY_HINT="* "
795     else
796         LOCAL_HISTORY_HINT=""
797     fi
798 }
799
800 PS1="\[${VT_WHITE_BG}\]\${LOCAL_HISTORY_HINT}\[${VT_RESET}\]${PS1}"
801
802 ######################################################################
803 # Switch off the history
804
805 function histfile_cue () {
806     if [[ ! "${HISTFILE}" == "${HOME}/.bash_history" ]]; then
807         HISTORY_CUE="[${HISTFILE}]"
808     else
809         HISTORY_CUE=""
810     fi
811 }
812
813 PS1="\[${VT_YELLOW_BG}\]\${HISTORY_CUE}\[${VT_RESET}\]${PS1}"
814
815 ######################################################################
816 # The dus command is available on my web site
817 #
818 # git clone http://fleuret.org/git/dus/
819
820 alias dus='dus -f -i'
821
822 ######################################################################
823 # The finddup command is available on my web site
824 #
825 # git clone http://fleuret.org/git/finddup/
826
827 # alias finddup='finddup -p0d'
828 alias finddup='finddup -p'
829
830 ######################################################################
831 # Selector based history
832 #
833 # The selector command is available on my web site
834 #
835 # git clone http://fleuret.org/git/selector/
836
837 function selector-history () {
838     selector --bash -u -c 7,4,0,3 -q <(history)
839 }
840
841 # M-r puts the selected history line in place of the current one
842
843 bind '"\C-[r":"\C-a\C-kselector-history\C-m"'
844
845 # M-t appends the selected history line and the end of the current one
846
847 bind '"\C-[t":"\C-a\C-kselector-history\C-m\C-a\C-y\C-e"'
848
849 ######################################################################
850 # Maintain a list of visited directories and provide a selector-based
851 # command to go back to any of them.
852
853 export SELECTOR_CD_HISTORY
854
855 [[ "${SELECTOR_CD_HISTORY}" ]] || \
856     SELECTOR_CD_HISTORY=${HOME}/.selector-cd-history
857
858 function selector-cd-search () {
859     PATH_TEMP=$(mktemp /tmp/selector-cd-path.XXXXXX)
860     selector -t "cd" -l 10000 -d -i -c 7,4,0,5 -o ${PATH_TEMP} -q ${SELECTOR_CD_HISTORY}
861     cd "$(cat ${PATH_TEMP} | sed -e 's!~!'${HOME}'!')"
862     \rm ${PATH_TEMP}
863 }
864
865 function selector-cd () {
866     if [[ -z "$1" ]]; then
867         cd
868     else
869         cd "$1"
870     fi
871     echo $PWD | sed -e "s!${HOME}!~!" >> ${SELECTOR_CD_HISTORY}
872 }
873
874 alias cd=selector-cd
875
876 # M-c provides a dynamic list of directories to cd into
877
878 bind '"\C-[c":"\C-a\C-kselector-cd-search\C-m"'
879
880 ######################################################################
881 # And we avoid to put in the history the use of the selector, which we
882 # do too often
883
884 HISTIGNORE="${HISTIGNORE}:selector-history"
885
886 ######################################################################
887
888 function selector-printer () {
889     TMP=$(mktemp /tmp/selector-printer.XXXXXX)
890     selector -o ${TMP} <(lpstat -a | awk '{print $1}')
891     export PRINTER=$(cat ${TMP})
892     echo "PRINTER=${PRINTER}"
893     rm -f ${TMP}
894     lpq
895 }
896
897 ######################################################################
898
899 function prompt_command () {
900 # save the history after every command to avoid loosing some when
901 # multiple shells are open
902     history -a
903 # load the saved history
904     history -n
905 # and the local histories system defined above
906     keep_local_history
907 # and the history cue
908     histfile_cue
909 }
910
911 PROMPT_COMMAND="prompt_command"
912
913 ######################################################################
914
915 # Displaying the timezone if it is set
916
917 if [[ ${TZ} ]]; then
918     echo "${VT_BOLD}${VT_GREEN_FG}Time zone is ${TZ}.${VT_RESET}"
919 fi
920
921 ######################################################################