sh/shell/alias/gpg.sh

15 lines
247 B
Bash
Raw Normal View History

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