sh/shell/alias/gpg.sh

13 lines
163 B
Bash
Raw Normal View History

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