13 lines
169 B
Bash
13 lines
169 B
Bash
|
# turn gpg agent off
|
||
|
alias gpgoff="\
|
||
|
gpgconf \
|
||
|
--kill \"gpg-agent\" \
|
||
|
"
|
||
|
|
||
|
# bind gpg agent to current tty
|
||
|
alias gpgtty="\
|
||
|
gpg-connect-agent \
|
||
|
updatestartuptty \
|
||
|
/bye \
|
||
|
"
|