export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
gpgconf --launch gpg-agent
gpg-connect-agent updatestartuptty /bye >/dev/null 2>&1

export XDG_RUNTIME_DIR=/run/user/$(id -u)
export GPG_TTY=$(tty)

# List all SystemD timers starting with ansible_
function list-timers() {
  echo "        NEXT RUN                       JOB NAME"
  systemctl --user show ansible_*.timer --property Description,NextElapseUSecRealtime --value --no-pager | grep . | paste -d' ' - - | sort -k2
}
