# -*-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 #
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"
fi
echo "Please click on the window to capture."
- xwd | convert - ${name}
+ xwd | convert xwd:- ${name}
\ls -l ${name}
}
}
######################################################################
-## 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"
# 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
[[ ${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"
new_backup="${backup}:::${date}"
if [[ -h "${current_backup}" ]]; then
- rsync --link-dest="${current_backup}/" -axz "${full_path}/" "${new_backup}/"
+ rsync --progress --link-dest="${current_backup}/" -axz "${full_path}/" "${new_backup}/"
rm "${current_backup}"
else
if [[ -a ${current_backup} ]]; then
echo "${current_backup} exists and is not a symbolic link" >&2
exit 1
else
- rsync -axz "${full_path}/" "${new_backup}/"
+ rsync --progress -axz "${full_path}/" "${new_backup}/"
fi
fi