7 lines
126 B
Fish
7 lines
126 B
Fish
|
#!/usr/bin/env fish
|
||
|
|
||
|
if test "$(command -v gpgconf &>/dev/null)"
|
||
|
set -gx GPG_TTY (tty)
|
||
|
gpgconf --launch gpg-agent
|
||
|
end
|