12 lines
155 B
Bash
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
|
|
}
|