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