X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=bashrc;h=f23078a37992cc3795c97622ba7ebb28138750ad;hb=4533cd84b6c05d62f049fba6f47530cb972f2194;hp=b2b3e51ab0e7478293590c54f90742263634210d;hpb=c3fd43c00a1093c6c3377e46604becb791bfe2f0;p=scripts.git diff --git a/bashrc b/bashrc index b2b3e51..f23078a 100644 --- a/bashrc +++ b/bashrc @@ -1,5 +1,8 @@ # -*-Shell-script-*- +# PS4='+ $(date "+%s.%N")\011 ' +# set -x + ######################################################################### # This program is free software: you can redistribute it and/or modify # # it under the terms of the version 3 of the GNU General Public License # @@ -120,8 +123,9 @@ alias find='ionice -c3 find' alias pd=pushd alias val='valgrind --leak-check=full --show-reachable=yes --db-attach=yes ' -alias s='screen -d -R -U && clear' +alias s='screen -d -R default -U && clear' alias p='feh --force-aliasing -d --full-screen --auto-zoom' +alias gp=gnuplot function nh () { export HISTFILE=/dev/null @@ -205,7 +209,8 @@ function rl () { then if [[ "$1" == "-v" ]] || [[ "$1" == "--view" ]] then - xpdf "${FILEBASE}.pdf" + # xpdf "${FILEBASE}.pdf" + zathura "${FILEBASE}.pdf" elif [[ "$1" == "-p" ]] || [[ "$1" == "--print" ]] then lpr "${FILEBASE}.pdf" @@ -314,7 +319,12 @@ function scan () { # A password generator function genpw () { - tr -dc A-Za-z0-9 < /dev/urandom | head -c16 + PW=$(tr -dc A-Za-z0-9 < /dev/urandom | head -c16) + if [[ ! "$1" == "-s" ]] + then + echo "$(date) ${PW}" >> ${HOME}/private/genpw.log + fi + echo ${PW} # tr -dc [:graph:] < /dev/urandom | head -c16 echo } @@ -375,7 +385,7 @@ function cap () { fi echo "Please click on the window to capture." - xwd | convert - ${name} + xwd | convert xwd:- ${name} \ls -l ${name} } @@ -424,6 +434,23 @@ function trash () { echo "Trashed $@" } +function trashlatex () { + TRASH=$(date +/tmp/trash-latex-${USER}-%Y-%b-%d-%Hh) + LINK=/tmp/trash + + mkdir -p ${TRASH} + + [[ -h ${LINK} ]] && \rm ${LINK} + + [[ ! -f ${LINK} ]] && ln -s ${TRASH} ${LINK} + + mv -v \ + *.log *.pdf *.aux *.nav *.pdfpc *.snm *.toc *.out \ + *.bbl *.blg \ + *.*.table *.*.gnuplot \ + ${TRASH} +} + ###################################################################### ## A version of pho which stores the image numbers in environment ## variables @@ -456,13 +483,7 @@ function dt () { } ###################################################################### -## ifup / ifdown with sudo and memorization of the network - -## When invoked without an argument netup uses the same argument as -## the previous time - -## When invoked without an argument netdown removes the last interface -## which was netuped +## ifup / ifdown with sudo [ ${NETUP_HISTORY} ] || NETUP_HISTORY="${HOME}/.netup_history" @@ -586,8 +607,9 @@ function checkgw () { function lr () { TERM_SIZE=($(stty size)) + INVIS="${VT_GREEN_FG}${VT_RESET}" \ls -goth --time-style="+${VT_GREEN_FG}%Y %b %d %H:%M${VT_RESET}" "$@" | \ - head -$((TERM_SIZE[0]-2)) | cut -b1-${TERM_SIZE[1]} + head -$((TERM_SIZE[0]-2)) | cut -b1-$((TERM_SIZE[1]+${#INVIS})) } ###################################################################### @@ -1064,7 +1086,7 @@ function prompt_command () { # multiple shells are open history -a # load the saved history - history -n + # history -n # and the local histories system defined above keep_local_history # and the history cue @@ -1080,3 +1102,10 @@ PROMPT_COMMAND="prompt_command" [[ ${TZ} ]] && echo "${VT_BLUE_FG}Time zone is ${TZ}.${VT_RESET}" ###################################################################### + +source /usr/share/bash-completion/bash_completion + +###################################################################### + +# added by Miniconda3 installer +export PATH="/home/fleuret/conda/bin:$PATH"