aboutsummaryrefslogtreecommitdiffstats
path: root/zsh
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-09-27 03:34:49 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2014-09-27 03:34:49 +0200
commit2223010abb736891acdf6771c6ed7fce00afee8a (patch)
treeb276addeb9addc14155ed956ef9a8112c4ebafc8 /zsh
parent61a6d7cf3ca36f80aace04af775944fd0f11b614 (diff)
downloaddotfiles-2223010abb736891acdf6771c6ed7fce00afee8a.tar.xz
zsh/profile-leeloo: use gnome keyring for gpg-agent
Diffstat (limited to 'zsh')
-rw-r--r--zsh/profile-leeloo11
1 files changed, 2 insertions, 9 deletions
diff --git a/zsh/profile-leeloo b/zsh/profile-leeloo
index 1e3f734..aa2f947 100644
--- a/zsh/profile-leeloo
+++ b/zsh/profile-leeloo
@@ -3,15 +3,8 @@ export LD_PRELOAD="$HOME"/.local/lib/libwcwidth.so
export PERL5LIB="$HOME"/misc/grawity/code/lib/perl5"${PERL5LIB+:}$PERL5LIB";
source <(perl -Mlocal::lib="$HOME"/.local)
-function {
- local envfile="$XDG_RUNTIME_DIR"/gpg-agent.env
- if [[ -e "$envfile" ]] && kill -0 $(cut -d':' -f2 <"$envfile") &>/dev/null; then
- source "$envfile"
- else
- source <(gpg-agent --daemon --write-env-file "$envfile")
- fi
- export GPG_AGENT_INFO
-}
+export GPG_AGENT_INFO=/run/user/"$UID"/keyring/gpg:0:1
+
function {
local envfile="$XDG_RUNTIME_DIR"/ssh-agent.env
local pid=$(awk -F'[=;]' 'FNR == 2 {print $2}' "$envfile" 2>/dev/null)