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