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