Added ionice when available.
[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     GW=$(route -n | grep ^0.0.0.0 | awk '{print $2}')
348     if [[ -n "${GW}" ]]; then
349         ping ${GW}
350     else
351         echo "Can not find a getaway." >&2
352         return 1
353     fi
354 }
355
356 ######################################################################
357 # Show the most recent files, no scroll
358
359 function lr () {
360     HEIGHT=$(stty size | awk '{print $1}')
361     WIDTH=$(stty size | awk '{print $2}')
362     \ls -goth --time-style="+%Y %b %d %H:%M" "$@" | \
363         head -$((HEIGHT-2)) | \
364         cut -b1-${WIDTH}
365 }
366
367 ######################################################################
368 # cd and ls into a directory
369 # [from http://www.oreillynet.com/onlamp/blog/2007/01/whats_in_your_bash_history.html]
370
371 # function c () { cd "$@" && lr; }
372
373 ######################################################################
374 # You can change the xterm background color on the fly!
375
376 function setxtermbg () {
377     echo -n $'\e]11;'$1$'\007'
378 }
379
380 ######################################################################
381 # Shuffle the lines from the stdin
382
383 function shuffle () {
384     SEED=$1
385     [[ $SEED ]] || SEED=0
386     awk 'BEGIN{srand('${SEED}')} { print rand()" "$0 }' | sort -g | sed -e "s/^[0-9\.e\-]* //"
387 }
388
389 ######################################################################
390 # Stores the last entered command into a file
391
392 KEPT_COMMANDS=${HOME}/.kept_bash_commands
393
394 function keep () {
395     if [[ ${KEPT_COMMANDS} ]]; then
396         LINE=$(history | tail -2 | head -1 | sed -e "s/^[0-9 ]*//")
397         echo $LINE
398         echo $(date)": "${LINE} >> ${KEPT_COMMANDS}
399     else
400         echo "You have to set \$KEPT_COMMANDS"
401     fi
402 }
403
404 ######################################################################
405 # I sometime burn CDs and DVDs
406
407 function burn () {
408     DEVICE="/dev/cdrw"
409     if [[ ! "$1" ]]; then
410         echo "burn <iso name | dirname>" >&2
411     elif [[ -f "$1" ]]; then
412         if [[ $(file "$1" | grep "ISO 9660") ]]; then
413             wodim -eject -v dev=${DEVICE} "$1"
414         else
415             echo "Unknown type of $1" >&2
416         fi
417     elif [[ -d "$1" ]]; then
418         TMP=$(mktemp /tmp/cdimage.XXXXXX) && \
419             genisoimage -input-charset iso8859-1 -r -o ${TMP} "$1" && \
420             wodim -eject -v dev=${DEVICE} ${TMP}
421         rm -f ${TMP}
422     else
423         echo "Can not find $1" >&2
424     fi
425 }
426
427 ######################################################################
428 # And watch DVDs too!
429
430 function dvd () {
431
432     echo
433     echo " ! @   Seek to the beginning of the previous/next chapter"
434     echo " j     Cycle through the available subtitles"
435     echo " o     Show/hide the timing"
436     echo " x z   Subtitle delay"
437     echo " / *   Volume"
438     echo
439
440     if [[ "$1" ]]; then
441         dvd_device="$1"
442         shift
443     else
444         dvd_device="/dev/cdrom"
445     fi
446
447     title="1"
448
449     if [[ "$1" ]]; then
450         title=$1
451         shift
452     fi
453
454     mplayer > /dev/null \
455         -stop-xscreensaver \
456         -vc ffmpeg12 -quiet \
457         -vf yadif \
458         -alang en \
459         -softvol -softvol-max 1000 \
460         -dvd-device ${dvd_device} dvd://${title}
461
462 # -slang en
463
464 }
465
466 function ripdvd () {
467     mkdir -p ${HOME}/dvds
468     cd ${HOME}/dvds
469     time dvdbackup -v -M && eject
470 }
471
472 alias ripcd=abcde
473
474 ######################################################################
475 # Upload the sources from the current directory to work
476
477 function ulsrc () {
478     if [[ ! "${MY_WORK_MACHINE}" ]]; then
479         echo "\$MY_WORK_MACHINE undefined" 1>&2
480         return 1
481     fi
482
483     DIR=${PWD/$HOME\//}
484
485     scp {Makefile,*.{cc,h,sh}} ${MY_WORK_MACHINE}:${DIR}
486
487     echo "Uploaded to ${MY_WORK_MACHINE}:${DIR}/"
488 }
489
490 ######################################################################
491 # Create small images from images
492
493 function mksmall () {
494
495     PARAMS="-geometry 800x600"
496
497     # Auto-orient does not seem to work at all, hence the ugly hack
498     # with exif below
499
500     # PARAMS="-auto-orient -geometry 800x600"
501
502     echo "Using ${PARAMS}"
503
504     DEST_DIR=$1
505
506     [[ ${DEST_DIR} ]] || DEST_DIR=./small
507
508     mkdir -p ${DEST_DIR}
509
510     if [[ ! -d ${DEST_DIR} ]]; then
511         echo "Can not create ${DEST_DIR}" >&2
512         return
513     fi
514
515     NB_TOTAL=$(find -maxdepth 1 -type f | wc -l)
516     NB=0
517
518     for i in $(find -maxdepth 1 -type f); do
519         if [[ $(file $i | grep image) ]]; then
520             if [[ -e ${DEST_DIR}/$i ]]; then
521                 echo "The file ${DEST_DIR}/$i already exists."
522             else
523
524                 orientation=$(exif $i \
525                     | grep ^Orientation \
526                     | head -1 \
527                     | sed -e "s/^[^|]*|//" \
528                     | sed -e "s/ *$//")
529
530                 case ${orientation} in
531                     ""|"top - left")
532                         rotation_cmd=""
533                         ;;
534
535                     "right - top")
536                         rotation_cmd="-rotate 90"
537                         ;;
538
539                     "left - bottom")
540                         rotation_cmd="-rotate 270"
541                         ;;
542
543                     *)
544                         rotation_cmd=""
545                         echo "Unknown orientation \"${orientation}\" !"
546                         ;;
547                 esac
548
549                 if [[ $(file ${i/%.*/}.* | grep -E movie) ]] ; then
550                     CAPTION_PARAMS="-font FreeSans-Bold -pointsize 32 -fill green -annotate +10+32 Video"
551                 else
552                     CAPTION_PARAMS=""
553                 fi
554
555                 convert ${rotation_cmd} $i ${PARAMS} ${CAPTION_PARAMS} ${DEST_DIR}/$i
556             fi
557
558             \ls -lt ${DEST_DIR}/$i
559         fi
560
561         NB=$((NB+1))
562
563         echo "$((NB*100/NB_TOTAL))% (${NB}/${NB_TOTAL})"
564     done
565 }
566
567 ######################################################################
568 # Move a file to the ~/sources/config directory and replace it where
569 # it was by a symbolic link
570
571 function mvtoconfig () {
572     CONFIGDIR=${HOME}/sources/config
573     if [[ -d ${CONFIGDIR} ]]; then
574         NEWNAME=${CONFIGDIR}/$(basename "$1" | sed -e "s/^\.//")
575         mv "$1" $NEWNAME
576         ln -s $NEWNAME $1
577     else
578         echo "Can not find ${CONFIGDIR}"
579     fi
580 }
581
582 ######################################################################
583 # Track uncommited files (I presume this is very ugly from a real git
584 # user perspective)
585
586 function git-fm () {
587     CURRENT_DIR=$(pwd)
588     NB_SUBDIR=0
589
590     for i in $(find -name ".git"); do
591         NB_SUBDIR=$((NB_SUBDIR+1))
592         cd ${CURRENT_DIR}/$(dirname $i)
593         NB_MODIFIED=$(git status | grep modified | wc -l)
594         if [[ ${NB_MODIFIED} -gt 0 ]]; then
595             echo "$(dirname $i) (${NB_MODIFIED})"
596             git status | grep modified \
597                 | sed -e "s/^#\t/    /" | sed -e "s/modified: *//"
598         fi
599     done
600
601     cd ${CURRENT_DIR}
602
603     echo "Visited ${NB_SUBDIR} directories."
604 }
605
606 ######################################################################
607 # Commits all directories under git
608
609 function git-ca () {
610     ORIGINAL_PWD=${PWD}
611     UNCOMMITTED=""
612     for d in $(find ${PWD} -name ".git"  | sed -e "s/\.git$//"); do
613         cd $d
614         NB_MODIFIED=$(git status | grep modified | wc -l)
615         if [[ ${NB_MODIFIED} -gt 0 ]]; then
616             if [[ $(pwd) =~ ${NO_AUTOMATIC_GIT_COMMIT} ]]; then
617                 UNCOMMITTED="${UNCOMMITTED} $(pwd)"
618             else
619                 echo $(pwd)" (${NB_MODIFIED} modified file(s))"
620                 git commit -a -m "Automatic commit" | grep -v ^#
621             fi
622             # git gc
623         fi
624     done
625
626     cd ${ORIGINAL_PWD}
627
628     if [[ ${UNCOMMITTED} ]]; then
629         echo "** WARNING: Did not automatically commit${UNCOMMITTED}"
630     fi
631 }
632
633 ######################################################################
634 # Backups all git directories into an encrypted backup file located
635 # either on the usb key or the SD card (in that order) if they can be
636 # mounted.
637
638 function git-backup () {
639
640     BACKUPDIR=/mnt/key
641
642     mount ${BACKUPDIR} 2> /dev/null
643
644     if [[ ! $(mount | grep ${BACKUPDIR}) ]]; then
645         BACKUPDIR=/mnt/sd
646         mount ${BACKUPDIR}
647     fi
648
649     if [[ $(mount | grep ${BACKUPDIR}) ]]; then
650         echo "Mounted ${BACKUPDIR}"
651     else
652         echo "Could not mount the backup directory"
653         return 1
654     fi
655
656     RESULT=${BACKUPDIR}/gitbackup-$(date +%F-%H%M%S).tgz.mc
657
658     tar zcvf - $(find ${HOME}/ -name .git) \
659         | mcrypt -f ${HOME}/private/mcrypt.key > ${RESULT}
660
661     if [[ -f ${RESULT} ]]; then
662         ls -lh ${RESULT}
663     else
664         echo "Could not create the backup!"
665         return 1
666     fi
667
668     sync
669
670     umount ${BACKUPDIR} && echo "Umounted ${BACKUPDIR}"
671 }
672
673 ######################################################################
674 # Downloads torrents located in ${BT_DIR}/torrents/ and puts the
675 # result in the ${BT_DIR}
676
677 function bt () {
678     if [[ ${BT_DIR} ]]; then
679         if [[ -d "${BT_DIR}/torrents" ]]; then
680             if [[ "$1" ]]; then
681                 mv "$1" ${BT_DIR}/torrents
682             fi
683             if [[ "$(ps auxwww | grep btlaunchmanycurses | grep -v grep)" ]]; then
684                 echo "A client is already running."
685             else
686                 cd ${BT_DIR} && screen btlaunchmanycurses torrents --max_upload_rate 32
687             fi
688         else
689             echo "Directory ${BT_DIR}/torrents does not exist."
690         fi
691     else
692         echo "You have to set \$BT_DIR."
693     fi
694 }
695
696 ######################################################################
697 # The complex prompt policy
698
699 export PS1
700
701 if [ "${CONSOLE}" == "yes" ]; then
702     PS1=""
703 else
704
705 # If the login is a standard one (as specified in
706 # IGNORED_PROMPT_LOGIN, which is set in the private bash file), do not
707 # show it. I have IGNORED_PROMPT_LOGIN="^fleuret$".
708
709     if [ ! ${IGNORED_PROMPT_LOGIN} ] || [[ ! ${USER} =~ ${IGNORED_PROMPT_LOGIN} ]]; then
710         IDENT="${USER}"
711     fi
712
713 # If the display is not the main one, make the assumption that the
714 # shell is not running on the localhost, and show the hostname
715
716     [ "${DISPLAY}" != ":0.0" ] && IDENT="${IDENT}@\h"
717
718 # If there is the login or the hostname, add a ":" to the prompt
719
720     [ "${IDENT}" ] && IDENT="${IDENT}:"
721
722 # If we are root, show that in red
723
724     if [[ ${USER} == "root" ]]; then
725         PS1="\[${VT_RED_BG}${VT_WHITE_FG}\]${IDENT}\w\[${VT_RESET}\] "
726     else
727         PS1="\[${VT_WHITE_BG}${VT_BLACK_FG}\]${IDENT}\w\[${VT_RESET}\] "
728     fi
729
730 # In an xterm, show the hostname and path in the title bar, highlight
731 # the prompt
732
733     # [ "${TERMS_WITH_BAR}" ] || TERMS_WITH_BAR="^xterm|screen$"
734
735     # if [[ "${TERM}" =~ "${TERMS_WITH_BAR}" ]]; then
736         # PS1="\[${VT_SET_TITLE}shell@\h (\w)${VT_END_TITLE}${VT_WHITE_BG}\]${IDENT}\w\[${VT_RESET}\] "
737     # else
738         # PS1="\[${VT_WHITE_BG}\]${IDENT}\w\[${VT_RESET}\] "
739     # fi
740
741 fi
742
743 ######################################################################
744 # This implements a local history. If we are in a directory containing
745 # a writable local history file, we add the last line of the global
746 # history to it.
747
748 LOCAL_HISTORY_FILE=".local_bash_history"
749
750 function keep_local_history () {
751     if [[ -w "${LOCAL_HISTORY_FILE}" ]]; then
752         history 1 | sed -e 's/^ *[0-9]* *//' >> ${LOCAL_HISTORY_FILE}
753         TMP=$(mktemp /tmp/lh.XXXXXX)
754         \chmod 600 ${TMP}
755         uniq < ${LOCAL_HISTORY_FILE} | tail -${HISTSIZE} > ${TMP}
756         # mv would replace a symbolic link, while cp keeps it
757         \cp ${TMP} ${LOCAL_HISTORY_FILE}
758         \rm ${TMP}
759         LOCAL_HISTORY_HINT="* "
760     else
761         LOCAL_HISTORY_HINT=""
762     fi
763 }
764
765 PS1="\[${VT_WHITE_BG}\]\${LOCAL_HISTORY_HINT}\[${VT_RESET}\]${PS1}"
766
767 ######################################################################
768 # Switch off the history
769
770 function histfile_cue () {
771     if [[ ! "${HISTFILE}" == "${HOME}/.bash_history" ]]; then
772         HISTORY_CUE="[${HISTFILE}]"
773     else
774         HISTORY_CUE=""
775     fi
776 }
777
778 PS1="\[${VT_YELLOW_BG}\]\${HISTORY_CUE}\[${VT_RESET}\]${PS1}"
779
780 ######################################################################
781 # The dus command is available on my web site
782 #
783 # git clone http://fleuret.org/git/dus/
784
785 alias dus='dus -f -i'
786
787 ######################################################################
788 # The finddup command is available on my web site
789 #
790 # git clone http://fleuret.org/git/finddup/
791
792 # alias finddup='finddup -p0d'
793 alias finddup='finddup -p'
794
795 ######################################################################
796 # Selector based history
797 #
798 # The selector command is available on my web site
799 #
800 # git clone http://fleuret.org/git/selector/
801
802 function selector-history () {
803     selector --bash -c 7,4,0,3 -q <(history)
804 }
805
806 # M-r puts the selected history line in place of the current one
807
808 bind '"\C-[r":"\C-a\C-kselector-history\C-m"'
809
810 # M-t appends the selected history line and the end of the current one
811
812 bind '"\C-[t":"\C-a\C-kselector-history\C-m\C-a\C-y\C-e"'
813
814 ######################################################################
815 # Maintain a list of visited directories and provide a selector-based
816 # command to go back to any of them.
817
818 export CD_HISTORY
819
820 [[ "${CD_HISTORY}" ]] || CD_HISTORY=${HOME}/.selector-cd-history
821
822 function selector-cd-search () {
823     PATH_TEMP=$(mktemp /tmp/selector-cd-path.XXXXXX)
824     selector -l 10000 -d -i -o ${PATH_TEMP} -q ${CD_HISTORY}
825     cd "$(cat ${PATH_TEMP} | sed -e 's|~|'${HOME}'|')"
826     \rm ${PATH_TEMP}
827 }
828
829 function selector-cd () {
830     if [[ -z "$1" ]]; then
831         cd
832     else
833         cd "$1"
834     fi
835     echo $PWD | sed -e "s!${HOME}!~!" >> ${CD_HISTORY}
836 }
837
838 alias cd=selector-cd
839
840 # M-c provides a dynamic list of directories to cd into
841
842 bind '"\C-[c":"\C-a\C-kselector-cd-search\C-m"'
843
844 ######################################################################
845 # And we avoid to put in the history the use of the selector, which we
846 # do too often
847
848 HISTIGNORE="${HISTIGNORE}:selector-history"
849
850 ######################################################################
851
852 function selector-printer () {
853     TMP=$(mktemp /tmp/selector-printer.XXXXXX)
854     selector -o ${TMP} <(lpstat -a | awk '{print $1}')
855     export PRINTER=$(cat ${TMP})
856     echo "PRINTER=${PRINTER}"
857     rm -f ${TMP}
858     lpq
859 }
860
861 ######################################################################
862
863 function prompt_command () {
864 # save the history after every command to avoid loosing some when
865 # multiple shells are open
866     history -a
867 # and the local histories system defined above
868     keep_local_history
869 # and the history cue
870     histfile_cue
871 }
872
873 PROMPT_COMMAND="prompt_command"
874
875 ######################################################################
876
877 # Displaying the timezone if it is set
878
879 if [[ ${TZ} ]]; then
880     echo "${VT_BOLD}${VT_GREEN_FG}Time zone is ${TZ}.${VT_RESET}"
881 fi
882
883 ######################################################################