summaryrefslogtreecommitdiffstats
path: root/gpg-agent.sh
blob: ea2871c5e6c7cb2988ce7ec268d45d288794d912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
#----------------------------------------------------
# Version:      0.1.0
# Author:       Florian "Bluewind" Pritz <flo@xssn.at>
#
# Licensed under WTFPL v2
#   (see COPYING for full license text)
#    
#----------------------------------------------------
# make working with the agent easier and prevent
# starting multiple agents
#----------------------------------------------------
initgpg(){
  [[ -z $XDG_CONFIG_HOME ]] && $XDG_CONFIG_HOME="$HOME/.config"
  [ -f "$XDG_CONFIG_HOME/disable-gpg-agent" ] && return 0
  envfile="${HOME}/.gpginfo"
  if test -f ${envfile} && kill -0 $(cut -d: -f 2 ${envfile} | head -n 1) 2>/dev/null; then
    eval $(cat ${envfile})
	else
    eval `/usr/bin/gpg-agent --daemon --enable-ssh-support --write-env-file ${envfile}`
  fi
  export GPG_AGENT_INFO
  export SSH_AUTH_SOCK
  export SSH_AGENT_PID
}
initgpg