13 lines
232 B
Bash
13 lines
232 B
Bash
|
# turn gpg agent off
|
||
|
gak() { a__gpg_agent_kill "${@}"; }
|
||
|
a__gpg_agent_kill() {
|
||
|
gpgconf \
|
||
|
--kill "gpg-agent"
|
||
|
}
|
||
|
|
||
|
# bind gpg agent to current tty
|
||
|
gau() { a__gpg_agent_update "${@}"; }
|
||
|
a__gpg_agent_update() {
|
||
|
rwx_gpg_agent_update
|
||
|
}
|