12 lines
163 B
Bash
12 lines
163 B
Bash
# turn gpg agent off
|
|
alias gak="\
|
|
gpgconf \
|
|
--kill \"gpg-agent\" \
|
|
"
|
|
|
|
# bind gpg agent to current tty
|
|
alias gau="\
|
|
gpg-connect-agent \
|
|
updatestartuptty \
|
|
/bye \
|
|
"
|