Files
2025-09-18 07:56:33 -04:00

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"