sh/shell/alias/gpg.sh

13 lines
155 B
Bash
Raw Normal View History

2023-05-15 07:01:00 +00:00
# turn gpg agent off
2024-11-16 14:59:29 +00:00
gak() {
gpgconf \
--kill "gpg-agent"
}
2023-05-15 07:01:00 +00:00
# bind gpg agent to current tty
2024-11-16 14:59:29 +00:00
gau() {
gpg-connect-agent \
updatestartuptty \
/bye
}