mirror of
https://github.com/anthonyoteri/dotfiles.git
synced 2026-06-05 15:46:54 -04:00
7 lines
208 B
Bash
7 lines
208 B
Bash
# Start the gpg-agent if not already running
|
|
if ! pgrep -x -u "${USER}" gpg-agent >/dev/null 2>&1; then
|
|
gpg-connect-agent /bye >/dev/null 2>&1
|
|
fi
|
|
|
|
alias gpg-unlock "gpg-connect-agent updatestartuptty /bye"
|