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