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