sh/bash/alias/gpg.sh
2023-05-15 09:01:00 +02:00

12 lines
169 B
Bash

# turn gpg agent off
alias gpgoff="\
gpgconf \
--kill \"gpg-agent\" \
"
# bind gpg agent to current tty
alias gpgtty="\
gpg-connect-agent \
updatestartuptty \
/bye \
"