diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-04-20 15:47:46 +0000 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-04-20 16:13:14 +0000 |
commit | 5b2e318b98db9de4d83c2d2291111905bdb6d2a8 (patch) | |
tree | f7e40d1ce999f86483dfeae37228144119a28090 /zsh | |
parent | df6ae96cfeec9dda6e50706f9349e22670838944 (diff) | |
download | dotfiles-5b2e318b98db9de4d83c2d2291111905bdb6d2a8.tar.xz |
zshrc: Fix setting of ssh/gpg keyring variables
Use test with -S to check for the existance of the gpg and ssh
gnome-keyring sockets, if they exist set the ssh/gpg-agent variables
correctly.
Old behavior overwrote the already existing versions of the variables if
the keyring sockets didn't exist.
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -147,7 +147,5 @@ sprfile() { curl -F "sprunge=<$1" http://sprunge.us } -GPG_AGENT_INFO=$(ss -xl | grep -o '/run/user/1000/keyring/gpg') -[ -z "$GPG_AGENT_INFO" ] || export GPG_AGENT_INFO=$GPG_AGENT_INFO:0:1 -SSH_AUTH_SOCK=$(ss -xl | grep -o '/run/user/1000/keyring/ssh') -[ -z "$SSH_AUTH_SOCK" ] || export SSH_AUTH_SOCK +[[ -S '/run/user/1000/keyring/gpg' ]] && export GPG_AGENT_INFO='/run/user/1000/keyring/gpg:0:1' +[[ -S '/run/user/1000/keyring/ssh' ]] && export SSH_AUTH_SOCK='/run/user/1000/keyring/ssh' |