rwx/shell/alias/gpg.sh

13 lines
163 B
Bash
Raw Normal View History

2023-05-15 09:01:00 +02:00
# turn gpg agent off
2023-08-28 12:41:27 +02:00
alias gak="\
2023-05-15 09:01:00 +02:00
gpgconf \
--kill \"gpg-agent\" \
"
# bind gpg agent to current tty
2023-08-28 12:41:27 +02:00
alias gau="\
2023-05-15 09:01:00 +02:00
gpg-connect-agent \
updatestartuptty \
/bye \
"