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