punkfairie
b183bcc9c0
I've automated as much as possible, and tucked the setup in it's own script which the user is prompted to run if no keys exist.
6 lines
118 B
Fish
6 lines
118 B
Fish
#!/usr/bin/env fish
|
|
|
|
if [ -e "~/.gnupg/gpg-agent.conf" ]
|
|
set -gx GPG_TTY (tty)
|
|
gpgconf --launch gpg-agent
|
|
end
|