ln -s <my-bin-dir>/password.store.sh <my-bin-dir>/pass
source <SOMEWHERE>/pass.bash-completion
use-agent ## tells gpg to use the gpg-agent
pinentry-program /usr/bin/pinentry-curses # for me the password entry in the qt version did not work. as you work in the terminal anyhow, ncurses is more convenient #enable-ssh-support - uncommented it, kept here for reference, if I will try to use it with ssh later default-cache-ttl 18000 max-cache-ttl 86400 # 24 hours ignore-cache-for-signing #
if test -f $HOME/.gpg-agent-info && \ kill -0 `cut -d: -f 2 $HOME/.gpg-agent-info` 2>/dev/null; then GPG_AGENT_INFO=`cat $HOME/.gpg-agent-info | cut -c 16-` else eval $(gpg-agent --daemon --no-grab --write-env-file $HOME/.gpg-agent-info) fi GPG_TTY=$(tty) export GPG_TTY export GPG_AGENT_INFO
alias p="pass" alias pc="pass -c"