X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=bash%2F.bashrc;h=9413671004c9a1aa828f881871507dfc42e58853;hb=5a003b059551bd3d7527916ecbf25b126161db4f;hp=dbf95c3bcf3f5473cbf00cca2aaefad8e3f3e989;hpb=f33ff9fe6bef1a6894ac5332c7f95c0a44f45761;p=max%2Fdotfiles.git diff --git a/bash/.bashrc b/bash/.bashrc index dbf95c3..9413671 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -92,7 +92,7 @@ function __prompt_command() if [[ "$git_status" =~ nothing\ to\ commit ]]; then local Color_On=$GREEN elif [[ "$git_status" =~ nothing\ added\ to\ commit\ but\ untracked\ files\ present ]]; then - local Color_On=$PURPLE + local Color_On=$CYAN else local Color_On=$RED fi @@ -112,3 +112,14 @@ function __prompt_command() PS1+="\$ " } PROMPT_COMMAND=__prompt_command + + +if [ -f "${HOME}/.gpg-agent-info" ]; then + . "${HOME}/.gpg-agent-info" + export GPG_AGENT_INFO + export SSH_AUTH_SOCK +fi + + +# Set GPG TTY +export GPG_TTY=$(tty)