5 lines
128 B
Bash
5 lines
128 B
Bash
#!/bin/bash
|
|
# GPG and SSH
|
|
SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
|
export SSH_AUTH_SOCK
|
|
gpgconf --launch gpg-agent
|