1
0
Fork 0
mirror of https://github.com/kastdeur/dotfiles.git synced 2025-06-18 05:06:38 +02:00

BASH gpg-agent and password-storage, updated gitignore_global and script for x11 to vnc casting

This commit is contained in:
Eric-Teunis de Boone 2019-10-10 14:20:41 +02:00
parent ef2cbabe11
commit 0a85f3ba63
4 changed files with 115 additions and 37 deletions

View file

@ -0,0 +1,15 @@
# Enable password-storage and its bash completion
PASSDIR="${DOTFILES}/password-storage"
# Only do this when the submodule is loaded
if [ -d "${PASSDIR}/src" ]; then
source "${PASSDIR}/src/completion/pass.bash-completion"
# If pass not registered as executable in your path
# Make an alias
if [[ $(command -v pass) ]]; then
alias pass="${PASSDIR}/src/password-store.sh"
fi
fi