sh/shell/alias/gpg.sh
2024-11-16 15:59:29 +01:00

12 lines
155 B
Bash

# turn gpg agent off
gak() {
gpgconf \
--kill "gpg-agent"
}
# bind gpg agent to current tty
gau() {
gpg-connect-agent \
updatestartuptty \
/bye
}